.subjects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.subject-card {
    border: 2px solid #e5e7eb; /* Light Gray */
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f9fafb; /* Very Light Gray */
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #fbbf24; /* Primary Accent - Amber */
}

.subject-content {
    padding: 2rem;
    text-align: center;
}

.subject-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Styles for "How It Works" Section */
.how-it-works {
    padding: 4rem 2rem;
    background-color: #ffffff; /* White background */
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 2rem auto 0;
}

.step-item {
    background-color: #f9fafb; /* Very Light Gray */
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e5e7eb; /* Light Gray */
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24; /* Primary Accent - Amber */
    background-color: #fffbeb; /* Light Amber bg */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937; /* Dark Gray */
}

.step-content p {
    font-size: 1rem;
    color: #4b5563; /* Medium Gray */
    line-height: 1.6;
}

.step-content a {
    color: #f59e0b; /* Darker Amber for links */
    text-decoration: underline;
}

.exam-note {
    text-align: center;
    margin-top: 3rem;
    padding: 1rem;
    background-color: #fffbeb; /* Light Amber bg */
    border: 1px solid #fde68a; /* Lighter Amber border */
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.exam-note p {
    font-size: 0.9rem;
    color: #78350f; /* Dark Amber text */
}



.hero {

    padding-top: 40px;
    border-radius: 0;
    
}

/* Ensure section headers are consistent */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937; /* Dark Gray */
    margin-bottom: 0.5rem;
}
.section-header p {
    font-size: 1.1rem;
    color: #6b7280; /* Gray */
    max-width: 600px;
    margin: 0 auto;
}

/* Button styling consistency (assuming .btn, .btn-primary, .btn-secondary, .btn-cta, .btn-cta-secondary are defined in main.css) */
/* Adding some general modern touches to feature cards if not already present */
.features-grid .feature-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.features-grid .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.07);
}
.features-grid .feature-card .feature-icon {
    font-size: 2.5rem; /* Larger icons */
    margin-bottom: 1rem;
    color: #fbbf24; /* Primary Accent - Amber */
}
.features-grid .feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}
.features-grid .feature-card p {
    font-size: 1rem;
    color: #4b5563;
    line-height: 1.6;
}

/* AI Assistant Section */
.ai-assistant-section {
    background-color: #1e3a8a; /* Dark Blue */
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.ai-assistant-container {
    max-width: 800px;
    margin: 0 auto;
}

.ai-assistant-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.ai-assistant-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.ai-assistant-container::after {
    content: '';
    display: block;
    width: 100px;
    height: 3px;
    background-color: #fbbf24; /* Amber */
    margin: 1.5rem auto 0;
}


/* Responsive adjustments for features and steps */
@media (max-width: 768px) {
    .subjects-grid {
        grid-template-columns: 1fr;
    }
    .features-grid {
        grid-template-columns: 1fr; /* Stack features on smaller screens */
    }
    .steps-container {
            grid-template-columns: 1fr; /* Stack steps on smaller screens */
    }
    .hero-content h1.hero-title {
        font-size: 2.5rem; /* Adjust hero title for smaller screens */
    }
    .hero-content p.hero-description {
        font-size: 1rem; /* Adjust hero description for smaller screens */
    }
}


.header {

        margin: 0;

    }

.hero-content h1.hero-title {
    border: none;
    border-bottom: 4px solid rgb(255, 188, 3);
}

span::after {
    background: none !important;
}

.ai-assistant-section {
    border-radius: 0;
}

/* Responsive adjustments for features and steps */
@media (max-width: 600px) {

    .view-button {

        width: 100% !important;
        padding: 20px;

    }

    .header {
        margin-bottom: 0 !important;
    }

    .stats {

        border-radius: 0;
        padding: 20px;
    }

    .ai-assistant-section p {
        text-align: left;
    }

    .hero-description {

        font-size: 14pt !important;
        text-align: left;
        margin-bottom: 20px;
    }
  
    .hero {

        padding: 20px;
    }

    .hero-content {

        margin-bottom: 20px;
    }

    h1 {

        border: 1px solid black;
        
    }

    .lp-container {

        padding: 0;
    }

    .how-it-works {

        padding: 15px;
        border-radius: 0;

    }

    .how-it-works p {

        margin-top: 20px;

    }

    .section-header {
        margin-bottom: 0;
    }

}