body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
}

.cibil-container {
    max-width: 800px;
    width: 100%;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.cibil-logo {
    width: 100px;
}

.login-btn {
    background-color: #ffc107;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}

h1 {
    text-align: center;
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #333;
}

.plan-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.plan-card.premium {
    background-color: #003a6f;
    color: #fff;
}

.plan-card h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.price {
    font-size: 2em;
    font-weight: bold;
    margin: 10px 0;
}

.original-price {
    text-decoration: line-through;
    font-size: 0.6em;
    margin-right: 10px;
    color: #ccc;
}

.save-badge {
    background-color: #28a745;
    color: #fff;
    font-size: 0.6em;
    padding: 5px 10px;
    border-radius: 5px;
}

.duration {
    font-size: 0.9em;
    margin-bottom: 20px;
}

.subscribe-btn {
    background-color: #ffc107;
    border: none;
    width: 100%;
    padding: 15px;
    font-size: 1em;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

.features-dropdown {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.arrow-down {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
}

.plan-card.premium .arrow-down {
    border-top-color: #fff;
}

.starter-plan h2 {
    text-align: center;
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #333;
}

.starter .purchase-type {
    font-size: 0.7em;
    font-weight: normal;
}

.note {
    font-size: 0.8em;
    color: #777;
    margin-top: 10px;
    text-align: center;
}

.footer-note {
    background-color: #eef2f5;
    padding: 20px;
    border-radius: 10px;
    font-size: 0.9em;
    color: #555;
}

.footer-note ul {
    padding-left: 20px;
    margin-top: 10px;
}

.footer-note a {
    color: #007bff;
    text-decoration: none;
}
