/* General Styling for Subscribe Page */
body {
    font-family: 'Inter', sans-serif; /* Example modern font */
    color: #333;
    background-color: #f8f9fa; /* Light background */
}

/* Hero Section */
.subscribe-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/subscribe.png'); /* Darker overlay for text visibility */
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden; /* To contain pseudo-elements if used */
}

.subscribe-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.subscribe-hero .lead {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #212529;
}

/* Pricing Cards */
.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Ensure rounded corners for nested elements */
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
    background-color: #007bff; /* Primary color */
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-bottom: none;
    border-radius: 15px 15px 0 0;
}

.pricing-card.featured-card .card-header {
    background-color: #ffc107; /* Highlight color for featured plan */
    color: #333;
    font-weight: bold;
}


.pricing-card .card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.pricing-card .card-subtitle {
    font-size: 1rem;
    opacity: 0.9;
}

.pricing-card .card-body {
    padding: 40px 30px;
    background-color: #fff;
    display: flex; /* For flex-column to push button to bottom */
    flex-direction: column;
}

.pricing-card .price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #007bff; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    line-height: 1;
}

.pricing-card.featured-card .price {
    color: #ffc107; /* Highlight color */
}

.pricing-card .price .currency {
    font-size: 1.8rem;
    vertical-align: super;
    margin-right: 5px;
    font-weight: 600;
}

.pricing-card .price .decimal {
    font-size: 2rem;
    font-weight: 600;
}

.pricing-card .price .period {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.8;
}

.pricing-card .features-list {
    padding-left: 0;
    margin-bottom: 30px;
    flex-grow: 1; /* Allows list to take up available space */
}

.pricing-card .features-list li {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #555;
}

.pricing-card .features-list li i {
    margin-right: 10px;
    color: #28a745; /* Green checkmark */
}

.pricing-card .features-list li.disabled {
    color: #aaa;
    text-decoration: line-through;
}

.pricing-card .features-list li.disabled i {
    color: #dc3545; /* Red cross */
}

/* Buttons */
.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 50px; /* Pill shape */
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

.btn-warning {
    background-color: #ffc107;
    border-color: #ffc107;
    color: #212529; /* Dark text for warning */
    font-weight: 700;
    padding: 12px 25px;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-warning:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}


/* Footer/FAQ Section (Optional but good for layout) */
.faqs-section {
    background-color: #f1f5f8;
    padding: 60px 0;
}

.faqs-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212529;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .subscribe-hero h1 {
        font-size: 2.5rem;
    }
    .subscribe-hero .lead {
        font-size: 1.2rem;
    }
    .pricing-section h2 {
        font-size: 2rem;
    }
    .pricing-card .card-body {
        padding: 30px 20px;
    }
    .pricing-card .price {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .subscribe-hero {
        padding: 80px 20px;
    }
    .subscribe-hero h1 {
        font-size: 2rem;
    }
    .subscribe-hero .lead {
        font-size: 1rem;
    }
    .pricing-section {
        padding: 50px 0;
    }
    .pricing-card {
        margin-bottom: 20px; /* Add space between cards on small screens */
    }
}