* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    padding-top: 80px;
}

body.home-page {
    padding-top: 0;
}

.notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #1e3a5f;
    color: white;
    padding: 0.5rem 0;
    z-index: 1001;
    overflow: hidden;
    display: block;
}

.notification-scroll {
    display: flex;
    white-space: nowrap;
    animation: scroll 30s linear infinite;
}

.notification-scroll p {
    padding: 0 2rem;
    margin: 0;
    font-size: 0.9rem;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

header {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
}

.home-page header {
    position: absolute;
    background: transparent;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2%;
    background: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
}

.home-page .navbar {
    background: transparent;
    box-shadow: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1002;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1e3a5f;
    transition: all 0.3s;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none !important;
}

.logo:hover {
    text-decoration: none !important;
}

a.logo {
    text-decoration: none !important;
}

a.logo:hover {
    text-decoration: none !important;
}

a.logo h1 {
    text-decoration: none !important;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: #1e3a5f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.5rem;
}

.home-page .logo-icon {
    background: transparent;
    color: #ffb606;
    border: 2px solid #ffb606;
}

.logo h1 {
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 600;
}

.home-page .logo h1 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.4rem;
    align-items: center;
}

.nav-links>li {
    position: relative;
}

.nav-links>li:hover .dropdown {
    display: block;
}

.home-page .nav-links>li:hover .dropdown {
    display: block;
}

.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0;
    z-index: 1001;
}

.dropdown:hover {
    display: block;
}

.nav-links>li:hover>a {
    color: #1e3a5f;
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
    border-bottom: none !important;
}

.dropdown a:hover {
    background: #f5f5f5;
    color: #1e3a5f;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid transparent;
}

.home-page .nav-links a {
    color: white;
    font-weight: 600;
}

.nav-links a:hover {
    color: #1e3a5f;
}

.home-page .nav-links a:hover {
    color: #ffb606;
}

.nav-links a.active {
    color: #1e3a5f;
    border-bottom-color: #1e3a5f;
}

.home-page .nav-links a.active {
    color: #ffb606;
    border-bottom-color: transparent;
}

/* Fix for Dropdown on Homepage */
.home-page .nav-links .dropdown a {
    color: #333;
    font-weight: 500;
}

.home-page .nav-links .dropdown a:hover {
    color: #1e3a5f;
    background: #f5f5f5;
}

.auth-buttons .btn-signin {
    padding: 0.6rem 1.8rem;
    background: white;
    color: #333;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
    border: 1px solid #ddd;
}

.auth-buttons .btn-signin:hover {
    background: #f5f5f5;
}

.hero {
    background: url('../images/CS3.jpg') center center/cover no-repeat;
    color: white;
    padding: 0;
    position: relative;
    overflow: visible;
    /* changed from hidden to visible */
    display: flex;
    align-items: flex-end;
    /* Align to bottom */
    justify-content: center;
    height: 100vh;
    /* Full viewport height */
    min-height: 600px;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    text-align: center;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Hero Bottom Integrated Section */
.hero-bottom-wrapper {
    padding: 0 5% 4rem;
    background: transparent;
    /* Show hero image background */
    position: relative;
    z-index: 10;
    margin-top: -40px;
    /* Adjusted to sit exactly below feature box links */
}

.hero-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    /* Removed top margin */
    display: grid;
    grid-template-columns: 1fr 500px;
    /* Increased from 450px */
    gap: 4rem;
    align-items: center;
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.hero-stat-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #ffb606, #ffd700);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hero-stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.hero-stat-card:hover::after {
    transform: scaleX(1);
}

.hero-stat-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.hero-stat-card p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-integrated-form {
    background: #ffffff;
    padding: 2.5rem;
    /* Reduced from 3.5rem */
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-integrated-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #1e3a5f, #ffb606);
}

.hero-integrated-form h3 {
    margin-bottom: 2.5rem;
    font-size: 2rem;
    color: #1e3a5f;
    text-align: center;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.hero-integrated-form .form-group {
    margin-bottom: 1.5rem;
}

.hero-integrated-form .form-group label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 0.6rem;
    display: block;
    letter-spacing: 0.3px;
}

.hero-integrated-form .form-control {
    background: #f1f5f9;
    border: 2px solid #f1f5f9;
    padding: 1.1rem 1.3rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1e293b;
    transition: all 0.3s ease;
}

.hero-integrated-form .form-control:focus {
    background: #ffffff;
    border-color: #ffb606;
    box-shadow: 0 0 0 4px rgba(255, 182, 6, 0.15);
    transform: translateY(-2px);
}

.hero-integrated-form .btn-submit {
    margin-top: 1rem;
    padding: 0.75rem;
    background: linear-gradient(135deg, #1e3a5f 0%, #2a4a75 100%);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 20px rgba(30, 58, 95, 0.2);
    transition: all 0.4s ease;
}

.hero-integrated-form .btn-submit:hover {
    background: linear-gradient(135deg, #2a4a75 0%, #1e3a5f 100%);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(30, 58, 95, 0.3);
}

.floating-apply-tab {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: top right;
    background: #003060;
    color: white;
    padding: 0.8rem 1.5rem;
    /* Reduced padding for compact size */
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    /* Slightly smaller but very clear */
    letter-spacing: 1.2px;
    text-transform: uppercase;
    /* Clear visibility */
    border-radius: 0 0 10px 10px;
    z-index: 10000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: none;
}

.floating-apply-tab:hover {
    background: #ffb606;
    color: #003060;
    padding-top: 1.8rem;
    /* Adjusted slide out for compact size */
}

@media (max-width: 1024px) {
    .hero-bottom-container {
        grid-template-columns: 1fr;
        margin: 2rem auto;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-apply-tab {
        padding: 0.5rem 1rem;
        /* Much smaller for mobile */
        font-size: 0.75rem;
        /* Smaller but readable */
        letter-spacing: 0.8px;
    }

    .floating-apply-tab:hover {
        padding-top: 1.2rem;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly lighter overlay */
    z-index: 0;
}

/* Hero Features Styling */
.hero-features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    max-width: 1200px;
    /* Or wider if needed */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    transform: translateY(50%);
    /* Push half down overlap if needed, matching eduma style usually they are just at bottom or overlapping next section. Let's just sit at bottom for now. */
    transform: translateY(0);
    /* Resetting to sitting at bottom */
    margin-bottom: 40px;
    /* Spacing from bottom */
    gap: 0;
    /* Connected boxes? Image shows distinct boxes... let's check image again. Image shows connected or very close. Let's do gap 0 or small. */
    gap: 30px;
}

.hero-feature-box {
    background: rgba(0, 0, 0, 0.75);
    padding: 2.5rem 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-feature-box:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-5px);
}

.feature-icon {
    flex-shrink: 0;
    color: #ffb606;
}

.feature-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.view-more {
    color: #ffb606;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s;
}

.view-more:hover {
    gap: 8px;
}

.arrow {
    font-size: 1.2rem;
    line-height: 1;
}

@media (max-width: 992px) {
    .hero-features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        background: white;
        /* Mobile nav needs bg */
    }

    .hamburger span {
        background: #333;
    }

    .nav-links {
        background: white;
    }

    .nav-links a {
        color: #333;
    }

    .logo h1 {
        color: #333;
        /* Dark Logo on mobile */
    }

    .home-page .navbar {
        background: white;
        /* Force white bg on mobile even for homepage */
    }

    .home-page .nav-links a {
        color: #333;
        /* Dark text on mobile menu */
    }

    .home-page .logo h1 {
        color: #333;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding-top: 80px;
        padding-bottom: 2rem;
        align-items: flex-end;
        background-position: center center;
        background-size: cover;
    }

    .hero-features-container {
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
        padding: 0 1rem;
        gap: 1rem;
        max-width: 100%;
    }

    .hero-feature-box {
        padding: 1.5rem 1rem;
        gap: 1rem;
        background: rgba(0, 0, 0, 0.85);
    }

    .feature-icon svg {
        width: 32px;
        height: 32px;
    }

    .feature-text h3 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .view-more {
        font-size: 0.8rem;
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 3rem;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1e3a5f;
    text-shadow: none;
    letter-spacing: 2px;
}

.hero-content p {
    display: none;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 1rem 2.5rem;
    background: #1e3a5f;
    color: #ffc107;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-hero-primary:hover {
    background: #152d47;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.3);
}

.btn-hero-secondary {
    padding: 1rem 2.5rem;
    background: #ffc107;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-hero-secondary:hover {
    background: #e6ac00;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.3);
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary-outline {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #1e3a5f;
}

.btn-secondary-outline:hover {
    background: #1e3a5f;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
    grid-column: 1 / -1;
    justify-content: flex-start;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.hero-stat p {
    font-size: 1rem;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.exams,
.features,
.stats {
    padding: 4rem 5%;
}

.course-banner {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f2ff 100%);
    padding: 1rem 5%;
    text-align: center;
}

.course-banner-content p {
    font-size: 1.3rem;
    color: #2c5282;
    font-weight: 600;
    margin: 0;
    text-shadow: none;
}

.examinations-section {
    padding: 2rem 5%;
    background: white;
}

.examinations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.examinations-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
}

.exam-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.exam-info-image {
    display: flex;
    justify-content: flex-end;
}

.exam-info-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.exam-info-content h3 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.exam-info-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.counselling-text {
    color: #1e3a5f;
    font-weight: 600;
    margin-top: 2rem;
}

.contact-number {
    font-size: 2rem;
    color: #1e3a5f;
    font-weight: 700;
    margin-top: 0.5rem;
}

.highlights-section {
    padding: 6rem 5%;
    background: #f9fbfd;
}

.highlights-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a5f;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.highlights-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
}

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

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* Individual Light Card Colors */
.highlight-card:nth-child(1) {
    background: #e3f2fd;
}

/* Light Blue */
.highlight-card:nth-child(2) {
    background: #f3e5f5;
}

/* Light Purple */
.highlight-card:nth-child(3) {
    background: #e0f2f1;
}

/* Light Teal */
.highlight-card:nth-child(4) {
    background: #fff3e0;
}

/* Light Orange */
.highlight-card:nth-child(5) {
    background: #e8f5e9;
}

/* Light Green */
.highlight-card:nth-child(6) {
    background: #ffebee;
}

/* Light Red */


.highlight-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
    height: 40px;
}

.highlight-icon svg {
    width: 32px;
    height: 32px;
    stroke: #1e3a5f;
    /* Default Blue */
    transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon svg {
    stroke: #ffb606;
    /* Yellow on hover */
    transform: scale(1.1);
}

.highlight-card h3 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.highlight-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

@media (max-width: 968px) {
    .exam-info-container {
        grid-template-columns: 1fr;
    }

    .course-banner-content p {
        font-size: 1.1rem;
    }

    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .highlights-grid {
        grid-template-columns: 1fr;
    }
}

.success-stories {
    padding: 2rem 5%;
    background: white;
}

.offers-section {
    padding: 3rem 5%;
    background: #f5f7fa;
}

.offers-section h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.offers-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
}

.offers-intro {
    font-size: 1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 1200px;
}

.offers-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.offers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.offer-check {
    width: 18px;
    height: 18px;
    background: #1e3a5f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
}

.offer-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
}

.offers-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.offers-image img {
    width: 100%;
    max-width: 350px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    object-position: 10% center;
    height: 320px;
}

@media (max-width: 968px) {
    .offers-container {
        grid-template-columns: 1fr;
    }

    .offers-image {
        order: -1;
    }
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e3a5f;
    font-weight: 700;
}

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

.story-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #1e3a5f;
    position: relative;
}

.story-quote {
    font-size: 4rem;
    color: #1e3a5f;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.story-card p {
    color: #666;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-author h4 {
    color: #1e3a5f;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.story-author span {
    color: #999;
    font-size: 0.9rem;
}

/* Coaching Form Section */
/* Coaching Form Section */
.coaching-section {
    padding: 6rem 5%;
    background: #fdfdfd;
    position: relative;
}

.coaching-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.coaching-header h2 {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.coaching-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #ffb606;
    border-radius: 2px;
}

.coaching-header p {
    font-size: 1.15rem;
    color: #666;
    line-height: 1.6;
}

.coaching-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.coaching-left {
    flex: 1;
}

.coaching-benefits {
    list-style: none;
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.coaching-benefits li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 600;
    color: #1e3a5f;
    font-size: 0.95rem;
}

.coaching-benefits li svg {
    color: #ffb606;
    stroke: #ffb606;
    flex-shrink: 0;
}

.coaching-illustration {
    width: 100%;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.coaching-illustration img {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.coaching-form-wrapper {
    flex: 1.2;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.coaching-form-wrapper h3 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
    font-size: 0.9rem;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.2rem;
    border: 2px solid #edf2f7;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #1e3a5f;
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #1e3a5f;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s;
    margin-top: 1rem;
}

.btn-submit:hover {
    background: #152d47;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(30, 58, 95, 0.2);
}

.status-msg {
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 600;
}

.status-msg.success {
    background: #f0fff4;
    color: #2f855a;
    border: 1px solid #c6f6d5;
}

.status-msg.error {
    background: #fff5f5;
    color: #c53030;
    border: 1px solid #fed7d7;
}

@media (max-width: 1024px) {
    .coaching-container {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .coaching-benefits {
        grid-template-columns: 1fr;
    }

    .coaching-header h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .coaching-form-wrapper {
        padding: 2rem 1.5rem;
    }
}


.cta-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary {
    padding: 1rem 2.5rem;
    background: white;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.btn-cta-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-cta-secondary:hover {
    background: white;
    color: #1e3a5f;
}

@media (max-width: 968px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

.exams h2,
.features h2,
.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.exam-grid,
.feature-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.exam-card,
.feature-card,
.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
}

.exam-card:hover,
.feature-card:hover {
    transform: translateY(-10px);
}

.exam-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.exam-card h3,
.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.exam-card p,
.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #2980b9;
}

.features {
    background: #f8f9fa;
}

.stats {
    background: #2c3e50;
    color: white;
}

.stats h2 {
    color: white;
}

.stat-card {
    background: #34495e;
    color: white;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 0.5rem;
}

footer {
    background: #000;
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: 1.2rem;
}

.footer-section p {
    line-height: 1.8;
    color: #ddd;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: #ffc107;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ddd;
}

@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Blog Page Styles */
.blog-intro-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 5%;
    border-bottom: 3px solid #1e3a5f;
}

.blog-intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.blog-intro-content h2 {
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-intro-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .blog-intro-content h2 {
        font-size: 1.5rem;
    }

    .blog-intro-content p {
        font-size: 1rem;
    }
}

.blog-page-container {
    background: #f5f7fa;
    min-height: 100vh;
    padding: 3rem 5%;
}

.blog-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-post-card {
    background: #1a2332;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.3;
}

.blog-post-content p {
    color: #b8c5d6;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.blog-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-category,
.blog-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #8b9db3;
    font-size: 0.85rem;
}

.blog-category svg,
.blog-date svg {
    stroke: #8b9db3;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: gap 0.3s;
}

.blog-read-more:hover {
    gap: 0.8rem;
}

.blog-read-more svg {
    stroke: white;
}

.blog-sidebar-new {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-widget {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-list li {
    margin-bottom: 0.8rem;
}

.sidebar-list a {
    color: #555;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s, padding-left 0.3s;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-list a:hover {
    color: #1e3a5f;
    padding-left: 0.5rem;
}

@media (max-width: 1200px) {
    .blog-content-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-posts {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-new {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .blog-page-container {
        padding: 2rem 3%;
    }

    .blog-sidebar-new {
        grid-template-columns: 1fr;
    }

    .blog-post-image {
        height: 180px;
    }
}

/* Blog Detail Page Styles */
.blog-detail-container {
    background: #f5f7fa;
    min-height: 100vh;
    padding: 3rem 5%;
}

.blog-detail-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-detail-content {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.blog-detail-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.detail-category,
.detail-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.95rem;
    font-weight: 600;
}

.detail-category svg,
.detail-date svg {
    stroke: #1e3a5f;
}

.blog-detail-image {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-text {
    color: #333;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-detail-text h2 {
    color: #1e3a5f;
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    font-weight: 700;
}

.blog-detail-text h3 {
    color: #2c5282;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.blog-detail-text p {
    margin-bottom: 1.2rem;
    text-align: justify;
}

.blog-detail-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.btn-back-blog {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-blog:hover {
    background: #2c5282;
    gap: 0.8rem;
}

.btn-back-blog svg {
    stroke: white;
}

.blog-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.related-post-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.related-post-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.related-post-info {
    flex: 1;
}

.related-post-info h4 {
    font-size: 0.95rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-weight: 600;
    line-height: 1.3;
}

.related-post-info span {
    font-size: 0.8rem;
    color: #999;
}

@media (max-width: 1200px) {
    .blog-detail-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-detail-sidebar {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
}

@media (max-width: 768px) {
    .blog-detail-container {
        padding: 2rem 3%;
    }

    .blog-detail-content {
        padding: 1.5rem;
    }

    .blog-detail-image {
        height: 250px;
    }

    .blog-detail-text {
        font-size: 1rem;
    }

    .blog-detail-text h2 {
        font-size: 1.5rem;
    }

    .blog-detail-text h3 {
        font-size: 1.2rem;
    }

    .blog-detail-sidebar {
        grid-template-columns: 1fr;
    }
}

/* Coming Soon Page Styles */
.coming-soon-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.coming-soon-container {
    max-width: 700px;
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.coming-soon-icon {
    margin-bottom: 2rem;
}

.coming-soon-container h1 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.coming-soon-container p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.coming-soon-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-item span {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back-home:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem;
    }

    .coming-soon-container h1 {
        font-size: 2rem;
    }

    .coming-soon-features {
        grid-template-columns: 1fr;
    }
}

/* Old Blog Styles - Keep for other pages if needed */
.breadcrumb {
    padding: 1.5rem 5%;
    background: white;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #1e3a5f;
}

.blog-container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.blog-main h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.blog-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.topic-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.topic-image {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.topic-icon {
    font-size: 4rem;
}

.topic-content {
    padding: 1.5rem;
}

.topic-content h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.topic-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.blog-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.blog-sidebar h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 0.5rem;
}

.category-list a {
    display: block;
    padding: 0.8rem 1rem;
    color: #666;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.category-list a:hover {
    background: #f5f5f5;
    color: #1e3a5f;
}

.category-list a.active {
    background: #e3f2fd;
    color: #1e3a5f;
    border-left: 3px solid #1e3a5f;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }

    header {
        top: 34px !important;
    }

    body:not(.home-page) {
        padding-top: 100px;
    }

    .notification-bar {
        display: block;
        padding: 0.4rem 0;
    }

    .notification-scroll p {
        font-size: 0.8rem;
        padding: 0 1rem;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 106px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        gap: 0;
        max-height: calc(100vh - 120px);
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 1rem;
        display: block;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        display: none;
        padding: 0;
    }

    .nav-links>li:hover .dropdown {
        display: block;
    }

    .auth-buttons {
        position: fixed;
        left: -100%;
        top: calc(106px + 450px);
        width: 100%;
        text-align: center;
        background: white;
        padding: 1rem 0;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    }

    .auth-buttons.active {
        left: 0;
    }

    .navbar {
        flex-direction: row;
        gap: 0;
        padding: 0.8rem 3% !important;
    }

    .logo h1 {
        font-size: 1rem !important;
    }

    .logo-icon {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.2rem !important;
    }

    .home-page .logo-icon {
        background: transparent;
        color: #1e3a5f;
        border: 2px solid #1e3a5f;
    }

    .hero {
        height: auto;
        min-height: 500px;
        padding: 2rem 5% 1rem;
        align-items: flex-end;
        background-position: center center !important;
        background-size: cover !important;
    }

    .hero-features-container {
        grid-template-columns: repeat(3, 1fr) !important;
        margin-bottom: 1rem;
        padding: 0 10px !important;
        gap: 8px !important;
    }

    .hero-feature-box {
        padding: 12px 5px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        min-height: 110px !important;
        justify-content: center !important;
    }

    .feature-icon svg {
        width: 24px !important;
        height: 24px !important;
        margin-right: 0 !important;
        margin-bottom: 8px !important;
    }

    .feature-text h3 {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }

    .view-more {
        font-size: 0.6rem !important;
        margin-top: 5px !important;
    }


    .hero-content h1 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        line-height: 1.1;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem !important;
    }

    .exam-info-container {
        grid-template-columns: 1fr;
        gap: 1rem !important;
    }

    .offers-container {
        grid-template-columns: 1fr;
        gap: 1.5rem !important;
    }

    .offers-image {
        order: -1;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .highlights-section,
    .examinations-section,
    .offers-section {
        padding: 1.5rem 5% !important;
    }

    .highlights-section h2,
    .examinations-section h2,
    .offers-section h2 {
        font-size: 1.6rem !important;
        margin-bottom: 0.8rem !important;
    }

    .highlights-section h2::after,
    .examinations-section h2::after,
    .offers-section h2::after {
        bottom: -5px !important;
        width: 60px !important;
    }

    .offers-intro {
        margin-bottom: 1.5rem !important;
        font-size: 0.9rem !important;
    }

    .course-banner {
        padding: 0.8rem 5% !important;
    }

    .course-banner-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .exam-info-image {
        justify-content: center;
    }

    .exam-info-image img {
        max-width: 100%;
    }

    .exam-info-content h3 {
        font-size: 1.5rem;
    }

    .exam-info-content p {
        font-size: 0.95rem;
    }
}

.about-hero {
    background: linear-gradient(135deg, #e8f4f8 0%, #f5f5f5 100%);
    padding: 5rem 5%;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.about-mission h2 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
}

.about-mission p {
    color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-join {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s;
    margin-top: 1rem;
}

.btn-join:hover {
    background: #2c5282;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.about-stat-card h3 {
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.about-stat-card p {
    color: #666;
    font-size: 1rem;
}

.values-section,
.team-section {
    padding: 5rem 5%;
    background: #e8eef3;
}

.values-section h2,
.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 4rem;
    font-weight: 700;
}

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

.values-grid .value-card:nth-child(4) {
    grid-column: 1 / 2;
    margin-left: 33.33%;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 48px;
    height: 48px;
    background: #e8f0f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    color: #2c5282;
}

.value-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.team-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.team-card h3 {
    color: #1e3a5f;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.team-card p {
    color: #666;
    line-height: 1.6;
}

.team-section {
    background: white;
}

.team-card span {
    display: block;
    color: #3498db;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-hero-content h1 {
        font-size: 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .values-grid .value-card:nth-child(4) {
        margin-left: 0;
    }
}

.pyq-hero {
    background: #f5f7fa;
    padding: 4rem 5%;
}

.pyq-hero-content h1 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
    font-weight: 700;
}

.pyq-hero-content p {
    font-size: 1.05rem;
    color: #666;
    max-width: 800px;
}

.pyq-stats {
    padding: 3rem 5%;
    background: white;
}

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

.pyq-stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pyq-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pyq-stat-icon {
    width: 48px;
    height: 48px;
    background: #e8f0f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.pyq-stat-icon svg {
    color: #2c5282;
}

.pyq-stat-card h3 {
    font-size: 2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pyq-stat-card p {
    color: #666;
    font-size: 0.95rem;
}

.pyq-filter-section {
    padding: 3rem 5%;
    background: white;
}

.pyq-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.filter-header svg {
    color: #1a3a52;
}

.filter-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.filter-group label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.filter-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #333;
    background: white;
    cursor: pointer;
    transition: border-color 0.3s;
}

.filter-group select:focus {
    outline: none;
    border-color: #2c5282;
}

.filter-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.filter-footer span {
    color: #666;
    font-size: 0.9rem;
}

.clear-filters {
    padding: 0.6rem 1.5rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.clear-filters:hover {
    background: #f5f5f5;
}

.pyq-papers {
    padding: 3rem 5%;
    background: white;
}

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

.paper-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.paper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.paper-badge {
    padding: 0.4rem 0.8rem;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.paper-year {
    padding: 0.4rem 0.8rem;
    background: #f0f0f0;
    color: #333;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.badge-new {
    background: #10b981 !important;
    color: white !important;
}

.paper-card h3 {
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.paper-subtitle {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.paper-stats {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    flex: 1;
}

.paper-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.paper-stat svg {
    color: #666;
    flex-shrink: 0;
}

.paper-stat.solutions {
    color: #10b981;
}

.paper-stat.solutions svg {
    color: #10b981;
}

.paper-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-download {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1a3a52;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-download:hover {
    background: #2c5282;
}

.btn-download svg {
    color: white;
}

.btn-view {
    padding: 0.75rem 1rem;
    background: white;
    color: #333;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-view:hover {
    background: #f5f5f5;
}

.btn-view svg {
    color: #666;
}

@media (max-width: 1200px) {
    .papers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pyq-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .filter-controls {
        grid-template-columns: 1fr;
    }

    .papers-grid {
        grid-template-columns: 1fr;
    }

    .pyq-hero-content h1 {
        font-size: 2rem;
    }

    .filter-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

.ca-hero {
    background: white;
    padding: 3rem 5% 2rem;
}

.ca-hero-content h1 {
    font-size: 2.2rem;
    color: #1a3a52;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.ca-hero-content p {
    font-size: 0.95rem;
    color: #666;
    max-width: 800px;
}

.ca-content {
    padding: 2rem 5% 4rem;
    background: white;
}

.ca-filters {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.ca-filter-btn {
    padding: 0.6rem 1.2rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.ca-filter-btn:hover {
    background: #f5f5f5;
}

.ca-filter-btn.active {
    background: #1a3a52;
    color: white;
    border-color: #1a3a52;
}

.ca-articles {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.ca-article {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
    position: relative;
}

.ca-article:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ca-article-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f7fa;
    border-radius: 8px;
}

.ca-article-content {
    flex: 1;
}

.ca-article-meta {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    align-items: center;
}

.ca-category {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
}

.ca-badge {
    padding: 0.3rem 0.7rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.ca-badge.high {
    background: #fee2e2;
    color: #dc2626;
}

.ca-badge.medium {
    background: #fef3c7;
    color: #d97706;
}

.ca-article h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.4;
}

.ca-article p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ca-article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ca-date {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #999;
}

.ca-date svg {
    color: #999;
}

.ca-action-buttons {
    display: flex;
    gap: 0.5rem;
}

.ca-download-btn,
.ca-view-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.ca-download-btn {
    background: #1a3a52;
    color: white;
}

.ca-download-btn:hover {
    background: #2c5282;
    transform: translateY(-2px);
}

.ca-download-btn svg {
    stroke: white;
}

.ca-view-btn {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
}

.ca-view-btn:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

.ca-view-btn svg {
    stroke: #333;
}

.ca-read-btn {
    padding: 0.6rem 1.5rem;
    background: #1a3a52;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.ca-read-btn:hover {
    background: #2c5282;
}

.ca-bookmark {
    position: absolute;
    top: 1.8rem;
    right: 1.8rem;
    background: white;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.3s;
}

.ca-bookmark:hover {
    background: #f5f5f5;
}

.ca-bookmark svg {
    color: #666;
}

@media (max-width: 768px) {
    .ca-hero-content h1 {
        font-size: 1.8rem;
    }

    .ca-article {
        flex-direction: column;
        padding: 1.5rem;
    }

    .ca-article-icon {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .ca-bookmark {
        top: 1.5rem;
        right: 1.5rem;
    }

    .ca-article-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}

.exam-hero {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1e3a5f;
    padding: 4rem 5%;
    text-align: center;
}

.exam-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1e3a5f;
}

.exam-hero-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #1e3a5f;
}

.exam-tabs-section {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 120px;
    z-index: 100;
}

.exam-tabs {
    display: flex;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    overflow-x: auto;
}

.exam-tab {
    padding: 1rem 1.5rem;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.exam-tab:hover {
    color: #1e3a5f;
    background: #f5f5f5;
}

.exam-tab.active {
    color: #1e3a5f;
    border-bottom-color: #1e3a5f;
}

.exam-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 5%;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h2 {
    font-size: 2rem;
    color: #cc0000;
    margin-bottom: 2rem;
    font-weight: 700;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-card ul {
    list-style: none;
    padding: 0;
}

.info-card ul li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.info-card ul li:last-child {
    border-bottom: none;
}

.pattern-section,
.syllabus-section,
.strategy-section {
    margin-bottom: 3rem;
}

.pattern-section h3,
.syllabus-section h3,
.strategy-section h3 {
    font-size: 1.5rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.exam-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.exam-table th {
    background: #1e3a5f;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.exam-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #666;
}

.exam-table tr:last-child td {
    border-bottom: none;
}

.values-section h2 {
    border-left: 5px solid #1e3a5f;
    padding-left: 1.5rem;
    background: linear-gradient(to right, #f0f4f8 0%, transparent 100%);
    padding: 1rem 1.5rem;
    border-radius: 8px;
}

.quick-stats {
    padding: 2rem 5%;
    background: #f9fafb;
}

.vision-mission-section {
    padding: 4rem 5%;
    background: white;
    max-width: 1400px;
    margin: 0 auto;
}

.vm-title {
    text-align: center;
    font-size: 2rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    font-weight: 700;
    position: relative;
}

.vm-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #ff6600;
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.vm-card {
    background: #e8e8e8;
    padding: 2rem;
    border-radius: 8px;
}

.vm-card h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vm-card p {
    color: #333;
    line-height: 1.8;
    font-size: 0.95rem;
}

.vm-full {
    background: #e8e8e8;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.vm-full h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.vm-full p {
    color: #333;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .vm-grid {
        grid-template-columns: 1fr;
    }
}

.quick-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.quick-stat-card {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e5e7eb;
}

.quick-stat-card h3 {
    font-size: 1.8rem;
    color: #1e3a5f;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.quick-stat-card p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .quick-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.syllabus-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
}

.syllabus-card h4 {
    font-size: 1.2rem;
    color: #1e3a5f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.syllabus-card ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.syllabus-card ul li {
    padding: 0.5rem 0;
    color: #666;
    line-height: 1.6;
}

.syllabus-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.btn-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1e3a5f;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 1rem;
    transition: background 0.3s;
}

.btn-link:hover {
    background: #2c5282;
}

.strategy-section ul {
    list-style: none;
    padding: 0;
}

.strategy-section ul li {
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.6;
}

.notification-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notification-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #1e3a5f;
}

.notif-date {
    display: inline-block;
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.notification-item h4 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.notification-item p {
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .exam-tabs {
        padding: 0 2%;
    }

    .exam-tab {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .exam-hero-content h1 {
        font-size: 1.8rem;
    }
}

.about-civil-services {
    padding: 2rem 5%;
    background: white;
}

.about-cs-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-cs-content h1 {
    font-size: 2.5rem;
    color: #dc2626;
    margin-bottom: 2rem;
    font-weight: 700;
    padding-left: 2rem;
}

.about-cs-content h2 {
    font-size: 1.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
    font-weight: 600;
    padding-left: 2rem;
}

.about-cs-content p {
    color: #374151;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    padding-left: 2rem;
}

.essay-writing-card {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    border-radius: 12px;
    padding: 1.5rem;
    color: white;
    text-align: center;
    position: static;
}

.essay-card-header h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.essay-card-header p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
}

.essay-illustration {
    background: #1e293b;
    border-radius: 8px;
    padding: 0.5rem;
    margin: 1rem 0;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.essay-illustration div {
    font-size: 2rem;
}

.essay-card-footer p {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 1rem;
}

.essay-card-footer h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

@media (max-width: 968px) {
    .about-cs-container {
        grid-template-columns: 1fr;
    }

    .about-cs-content h1 {
        font-size: 2rem;
    }

    .essay-writing-card {
        position: static;
    }
}

.about-cs-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notice-board {
    background: #fef7ed;
    border: 1px solid #fed7aa;
    border-radius: 8px;
    padding: 1.5rem;
}

.notice-board h3 {
    color: #c2410c;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    border-bottom: 1px solid #fed7aa;
    padding-bottom: 0.5rem;
}

.notice-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid #fed7aa;
}

.notice-item:last-child {
    border-bottom: none;
}

.notice-item h4 {
    color: #374151;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.notice-item p {
    color: #6b7280;
    font-size: 0.85rem;
    margin: 0;
}

.essay-card-image {
    margin: 0.5rem 0;
}

.info-card:nth-child(1) {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.info-card:nth-child(2) {
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.info-card:nth-child(3) {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.syllabus-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2% 2rem 5%;
}

.syllabus-main {
    background: transparent;
    padding: 0;
}

.syllabus-title {
    color: #cc0000;
    font-size: 1.85rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-decoration: underline;
    line-height: 1.2;
    font-family: Arial, sans-serif;
}

.syllabus-intro {
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.paper-title {
    color: #ff6600;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    text-decoration: underline;
}

.preparation-title {
    color: #000;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2.5rem 0 1rem 0;
    text-decoration: underline;
}

.pattern-title {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 1.5rem 0 1rem 0;
}

.tips-card {
    background: #6366f1;
    border-radius: 8px;
    padding: 10px;
    color: white;
    position: sticky;
    top: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tips-card-inner {
    background: white;
    border-radius: 6px;
    padding: 20px 15px;
    position: relative;
}

.tips-card-inner::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 80px;
    bottom: 50px;
    width: 2px;
    background: #f1f5f9;
    z-index: 1;
}

.tips-card h3 {
    text-align: center;
    font-size: 1rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tip-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    margin-bottom: 12px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.tip-number {
    width: 24px;
    height: 24px;
    background: white;
    color: #6366f1;
    border: 2px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

.tip-text {
    flex: 1;
    color: #000;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    font-size: 0.65rem;
}

.tip-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.tip-orange {
    background: #fee2e2;
    border: 1px solid #fecaca;
}

.tip-teal {
    background: #d1fae5;
    border: 1px solid #a7f3d0;
}

.tip-pink {
    background: #fce7f3;
    border: 1px solid #fbcfe8;
}

.tip-yellow {
    background: #fef9c3;
    border: 1px solid #fef08a;
}

.tip-purple {
    background: #ede9fe;
    border: 1px solid #ddd6fe;
}

.tip-blue {
    background: #dbeafe;
    border: 1px solid #bfdbfe;
}

.tip-coral {
    background: #ffe4e6;
    border: 1px solid #fecaca;
}

.tip-green {
    background: #dcfce7;
    border: 1px solid #bbf7d0;
}

.footer-text {
    text-align: center;
    font-weight: 900;
    margin-top: 10px;
    color: white;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 0;
}

.syllabus-table-container {
    margin: 2rem 0;
    overflow-x: auto;
}

.syllabus-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

.syllabus-table th {
    background: #f8f9fa;
    color: #374151;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e5e7eb;
}

.syllabus-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #374151;
    vertical-align: top;
}

.syllabus-table tr:last-child td {
    border-bottom: none;
}

.syllabus-table td:first-child {
    font-weight: 600;
    color: #1f2937;
}


.mains-syllabus-section {
    margin-top: 1rem;
    padding-top: 1rem;
}

.mains-container {
    margin-top: 5rem;
}

.sticky-sidebar-item {
    position: sticky;
    top: 2rem;
    z-index: 10;
}

.section-subtitle {
    color: #1e40af;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
}

/* Sidebar Diagram Styles */
.mains-diagram-section {
    margin-top: 3rem;
    text-align: center;
}

.diagram-title {
    background: #16a34a;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    font-weight: 800;
    font-size: 0.85rem;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.diagram-container {
    position: relative;
    padding-top: 30px;
    margin-bottom: 30px;
}

.diagram-line {
    position: absolute;
    top: 0;
    left: 50%;
    height: 30px;
    width: 2px;
    background: #e2e8f0;
    transform-origin: top center;
}

.line1 {
    transform: translateX(-50%) rotate(-45deg);
    height: 40px;
    background: #c026d3;
}

.line2 {
    transform: translateX(-50%) rotate(-15deg);
    height: 35px;
    background: #dc2626;
}

.line3 {
    transform: translateX(-50%) rotate(15deg);
    height: 35px;
    background: #fbbf24;
}

.line4 {
    transform: translateX(-50%) rotate(45deg);
    height: 40px;
    background: #1e3a8a;
}

.diagram-boxes {
    display: flex;
    justify-content: space-between;
    gap: 5px;
    margin-top: 10px;
}

.diag-box {
    flex: 1;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    font-size: 0.62rem;
    min-width: 0;
}

.box-label {
    padding: 5px 2px;
    font-weight: 800;
    color: #000;
    background: #fff;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
}

.box-compulsory .box-label {
    color: #c026d3;
}

.box-essay .box-label {
    color: #dc2626;
}

.box-gs .box-label {
    color: #fbbf24;
}

.box-optional .box-label {
    color: #1e3a8a;
}

.box-content {
    padding: 10px 2px;
    color: white;
    min-height: 90px;
    line-height: 1.3;
}

.box-compulsory .box-content {
    background: #c026d3;
}

.box-essay .box-content {
    background: #dc2626;
}

.box-gs .box-content {
    background: #fbbf24;
}

.box-optional .box-content {
    background: #1e3a8a;
}

/* Mains Updates Card */
.mains-updates-card {
    background: #fffcf0;
    border: 1px solid #ffedd5;
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.mains-updates-card h3 {
    color: #9a3412;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.update-item {
    border-bottom: 1px solid #ffedd5;
    padding: 1rem 0;
}

.update-item:last-child {
    border-bottom: none;
}

.update-item a {
    display: block;
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.update-item span {
    display: block;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 968px) {
    .syllabus-container {
        grid-template-columns: 1fr;
        padding: 1rem 5%;
    }

    .tips-card {
        position: static;
        margin-top: 2rem;
    }

    .syllabus-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .syllabus-table-container {
        overflow-x: scroll;
    }

    .syllabus-table {
        min-width: 600px;
    }
}

/* General Studies Paper 1 and Paper 2 styling */
.gs-paper-title {
    font-size: 0.85rem;
    color: #ff6600;
    font-weight: 600;
}

/* Preliminary Paper titles styling */
.prelim-paper-title {
    font-size: 1.3rem !important;
    color: #cc0000 !important;
}

/* Mains section titles styling */
.mains-section-title {
    font-size: 1.3rem !important;
    color: #cc0000 !important;
}

/* Prelims pattern title styling */
.prelim-pattern-title {
    color: #cc0000 !important;
}

/* Page Title Section (Blog Hero) */
.page-title-section {
    background: url('../images/Blog.webp') center center/cover no-repeat;
    position: relative;
    padding: 100px 0;
    margin-bottom: 3rem;
    height: 300px;
    display: flex;
    align-items: center;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.page-title-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 2;
    width: 100%;
}

.page-title {
    font-size: 3rem;
    color: white;
    font-weight: 700;
    padding-left: 20px;
    border-left: 5px solid #ffb606;
    line-height: 1;
    display: inline-block;
}

/* Course Banner */
.course-banner {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    color: #1e3a5f;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 2rem;
}

.course-banner-content p {
    font-size: 1.5rem;
    font-weight: 600;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Examinations Section */
.examinations-section {
    padding: 4rem 5%;
    background: #fdfdfd;
}

.examinations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a5f;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.examinations-section h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ffb606;
    margin: 10px auto 0;
    border-radius: 2px;
}

.exam-info-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.exam-info-image {
    flex: 1;
    max-width: 500px;
}

.exam-info-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.exam-info-image img:hover {
    transform: scale(1.02);
}

.exam-info-content {
    flex: 1;
}

.exam-info-content h3 {
    font-size: 2.2rem;
    color: #1e3a5f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.exam-info-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .exam-info-container {
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
    }

    .exam-info-image {
        max-width: 100%;
    }
}

/* Professional PYQ Filter Section */
.pyq-filter-section {
    padding: 2rem 5%;
    background: white;
}

.pyq-filter-container {
    max-width: 1400px;
    margin: 0 auto;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.filter-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.6rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.4rem;
}

.filter-header h3 {
    font-size: 1.3rem;
    color: #1e3a5f;
    font-weight: 700;
    margin: 0;
}

.filter-controls {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.filter-group select {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    color: #333;
    background: #fdfdfd;
    transition: all 0.3s;
    outline: none;
    cursor: pointer;
}

.filter-group select:focus {
    border-color: #1e3a5f;
    box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.filter-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.clear-filters {
    padding: 0.6rem 1.2rem;
    background: #f5f5f5;
    color: #666;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.clear-filters:hover {
    background: #e0e0e0;
    color: #333;
}

/* Professional Paper Cards */
.pyq-papers {
    padding: 3rem 5%;
    background: #f8f9fa;
}

.papers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.paper-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    border-top: 4px solid #ffb606;
    /* Yellow Accent Top Border */
    position: relative;
    overflow: hidden;
}

.paper-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: #ffb606;
}

.paper-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.paper-badge {
    background: #e8f0f8;
    color: #1e3a5f;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: none;
}

.paper-year {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

.paper-card h3 {
    font-size: 1.2rem;
    color: #2d4a6d;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.paper-subtitle {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.paper-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.paper-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #777;
}

.paper-stat svg {
    stroke: #1e3a5f;
    width: 16px;
    height: 16px;
}

.paper-stat.solutions {
    color: #2e7d32;
    background: #e8f5e9;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-weight: 600;
}

.paper-stat.solutions svg {
    stroke: #2e7d32;
}

.paper-actions {
    display: flex;
    gap: 1rem;
}

.btn-download {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: #1e3a5f;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.btn-download:hover {
    background: #ffb606;
    color: #1e3a5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 182, 6, 0.3);
}

.btn-view {
    padding: 0.8rem;
    background: #f5f5f5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    color: #1e3a5f;
}

.btn-view:hover {
    background: #e0e0e0;
}

/* Added for Mobile Responsiveness */
@media (max-width: 768px) {
    .filter-controls {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .filter-footer {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center;
        align-items: center !important;
    }

    .pyq-filter-section {
        padding: 2rem 1rem !important;
    }

    .pyq-filter-container {
        padding: 1.5rem !important;
    }

    .papers-grid {
        grid-template-columns: 1fr !important;
    }

    .filter-group label {
        font-size: 0.85rem !important;
        margin-bottom: 0.4rem !important;
    }

    .filter-group select {
        width: 100% !important;
        padding: 0.8rem !important;
        font-size: 0.95rem !important;
    }
}

/* Exam Page Syllabus & Content Arrangement (Mobile) */
@media (max-width: 768px) {
    .exam-tabs-section {
        top: 106px !important;
        background: white;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .exam-tabs {
        padding: 0 1rem !important;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .exam-tab {
        padding: 0.8rem 1rem !important;
        font-size: 0.82rem !important;
        flex: 0 0 auto;
        display: inline-block;
    }

    .exam-content {
        padding: 1.5rem 1rem !important;
    }

    /* Target Syllabus Specific arrangement */
    .syllabus-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        gap: 2rem !important;
    }

    .syllabus-main {
        order: 1;
        padding: 0 !important;
    }

    .syllabus-sidebar {
        order: 2;
        padding: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .syllabus-title {
        font-size: 1.6rem !important;
        text-align: left;
        margin-bottom: 1.2rem !important;
        line-height: 1.3 !important;
    }

    .syllabus-intro {
        font-size: 0.92rem !important;
        color: #444 !important;
        margin-bottom: 1.5rem !important;
    }

    /* Diagram arrangement */
    .mains-diagram-section {
        order: 1;
        margin-top: 1rem !important;
    }

    .diagram-boxes {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        margin-top: 20px !important;
    }

    .diag-box {
        min-width: 0 !important;
    }

    .box-label {
        min-height: 45px !important;
        font-size: 0.65rem !important;
        padding: 5px !important;
    }

    .box-content {
        min-height: 80px !important;
        font-size: 0.65rem !important;
        padding: 8px 5px !important;
    }

    .diagram-line {
        display: none !important;
    }

    .diagram-container {
        padding-top: 0 !important;
    }

    /* Tips card arrangement */
    .tips-card {
        order: 2;
        position: static !important;
        width: 100% !important;
        margin-top: 0 !important;
    }

    /* Ensure tables inside syllabus scroll but pattern tables stay as requested */
    .syllabus-table-container {
        margin: 1.5rem -1rem !important;
        padding: 0 1rem !important;
        overflow-x: auto !important;
    }

    .syllabus-table {
        min-width: 500px !important;
    }

    /* General text adjustments for syllabus readability */
    .paper-title,
    .prelim-paper-title,
    .mains-section-title {
        font-size: 1.15rem !important;
        margin-top: 1.5rem !important;
    }

    .preparation-title {
        font-size: 1.2rem !important;
        margin-top: 2rem !important;
    }
}