/* Pricing Section Overall Styles */
.offers-section {
    background-color: #121212; /* Dark background */
    color: #FFFFFF; /* White text color */
    padding: 40px 0;
    text-align: center;
}

.offers-headline {
    font-size: 3rem; /* Headline size */
    font-weight: bold;
    color: #FFFFFF; /* Red color for headline */
}

.offers-subheadline, .offers-subheadline-2 {
    font-size: 1.5rem;
    color: #B3B3B3; /* Light grey for subheadlines */
    margin-bottom: 1rem;
}

/* Countdown Timer Styles */
.countdown-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 2rem;
}

.time-box {
    background-color: #1C1C1E; /* Slightly lighter black for boxes */
    color: #FFFFFF;
    padding: 10px 20px;
    border-radius: 10px; /* Rounded corners for the boxes */
}

.time-box p {
    margin: 0;
    color: #B3B3B3; /* Light grey for text */
}



/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: #121212; /* Dark background */
    color: #FFFFFF; /* White text color */
}

/* Card */
.pricing-card .card {
    background: #1C1C1E; /* Lighter dark background for card */
    border: none;
    border-radius: 15px;
    margin: 20px 0;
    transition: transform 0.3s ease-in-out;
}

.pricing-card .card:hover {
    transform: scale(1.05); /* Slightly scale up on hover */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
}

/* Card Header */
.card-header {
    font-size: 2rem;
    color: #ffb703; /* Red color for header */
    margin-bottom: 15px;
}

/* Card Price */
.card-price span {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFFFFF; /* Red color for price */
}

/* Plan Duration */
.plan-duration {
    margin-bottom: 20px;
    color: #B3B3B3; /* Grey color for subtext */
}

/* Features List */
.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 20px; /* Space above the button */
}

.features-list li {
    margin-bottom: 10px; /* Space between list items */
    position: relative;
}

.features-list li i {
    margin-right: 10px;
    color: #ffb703; /* Red color for FontAwesome icons */
}

/* Action Button */
.btn-choose {
    background-color: #ffb703; /* Red background for button */
    color: #FFFFFF; /* White text color */
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
    display: inline-block;
    margin: auto;
}

.btn-choose:hover {
    background-color: darken(#FF0000, 10%);
}
