/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    /* New Orange & Black Theme */
    --navy: #1a1a1a;
    --navy-light: #2a2a2a;
    --navy-dark: #000000;
    --gold: #FF6B35;
    --gold-light: #FF8C61;
    --gold-dark: #F7931E;
    --white: #FFFFFF;
    --gray-light: #FFF4E6;
    --gray: #E0E0E0;
    --gray-dark: #4a4a4a;
    --text-dark: #1a1a1a;
    
    /* Alternative naming */
    --primary-orange: #FF6B35;
    --secondary-orange: #F7931E;
    --dark-black: #1a1a1a;
    --light-bg: #FFF4E6;
    --text-gray: #4a4a4a;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: var(--text-gray);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation */
.header {
    background: var(--navy);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px rgba(10, 31, 68, 0.15);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.logo a img{
    max-width: 150px;
        height: auto;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.logo a:hover .logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.logo-text {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold);
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.logo a:hover .logo-text {
    color: var(--gold-light);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

/* Contact Button Style */
.nav-link-button {
    color: var(--navy);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.nav-link-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 6px;
    vertical-align: middle;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 12px;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--navy);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: linear-gradient(to right, rgba(212, 175, 55, 0.1), transparent);
    color: var(--gold-dark);
    padding-left: 32px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 600px;
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.95) 0%, rgba(26, 58, 95, 0.9) 100%),
                url('https://images.unsplash.com/photo-1576495199011-eb94736d05d6?w=1600&q=80') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 64px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 24px;
    color: var(--gold-light);
    margin-bottom: 24px;
    font-style: italic;
}

.hero-description {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0.95;
}

.hero-btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-title {
    font-size: 42px;
    text-align: center;
    color: var(--navy);
    margin-bottom: 50px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.category-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.4s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
    border-color: var(--gold-light);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: all 0.4s ease;
}

.category-card:hover .category-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

.category-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--navy);
}

.category-card p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 48px;
    margin-top: 60px;
}

.feature-item {
    position: relative;
    padding-left: 80px;
}

.feature-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 56px;
    font-weight: bold;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
}

.feature-item h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--navy-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-col img{
    max-width: 180px;
    height: auto;
    margin: 0 0 20px;
}
.footer-col p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--white);
    text-decoration: none;
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--gold-light);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: var(--navy);
        width: 100%;
        padding: 40px 24px;
        transition: left 0.3s ease;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        gap: 0;
    }

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

    .nav-menu li {
        width: 100%;
        margin: 12px 0;
    }
    
    .nav-link-button {
        display: block;
        text-align: center;
        margin-top: 16px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 8px;
        border-radius: 8px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .category-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .hero {
        height: 500px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-btn {
        padding: 14px 36px;
        font-size: 16px;
    }

    .categories,
    .why-choose {
        padding: 60px 0;
    }
}/* New Homepage Styles */

/* Hero Section with Form */
.hero-new {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-left {
    color: var(--white);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    color: var(--gold-light);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.hero-title-new {
    font-size: 48px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-description-new {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.95;
    margin-bottom: 0;
}

.hero-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.hero-form-wrapper h3 {
    color: var(--navy);
    font-size: 22px;
    margin-bottom: 24px;
    text-align: center;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-form input,
.hero-form select {
    padding: 14px 18px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    width: 100%;
}
.status.js-status.err {
    color: #f00;
    font-size: 14px;
}

.hero-form input:focus,
.hero-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.phone-input-group {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 12px;
}

.country-code {
    background: var(--white);
}

.hero-submit-btn {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
    margin-top: 8px;
}

.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* University Logos Carousel */
.logos-carousel {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.carousel-track {
    display: flex;
    gap: 32px;
    animation: scroll 30s linear infinite;
}

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

.logo-item {
    flex: 0 0 auto;
}

.logo-box {
    width: 140px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 12px;
    font-weight: 600;
    color: var(--navy);
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
    padding: 12px;
}

.logo-box img {
    max-width: 100%;
    max-height: 50px;
    object-fit: contain;
}

.logo-box span {
    font-size: 13px;
    text-align: center;
    line-height: 1.3;
}

.logo-box:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Ranking Cards Section */
.ranking-cards-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.ranking-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ranking-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.ranking-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.15);
}

.ranking-card-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
}

.ranking-card-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.ranking-card-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.ranking-card-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 20px;
    flex: 1;
}

.card-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    align-self: flex-start;
}

.card-link::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: var(--gold);
}

.card-link:hover::after {
    transform: translateX(4px);
}

/* Subjects Carousel */
.subjects-section {
    padding: 100px 0;
    background: var(--white);
}

/* Our Rankings Section */
.our-rankings-section {
    padding: 100px 0;
    background: var(--white);
}

.rankings-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ranking-box {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.ranking-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.15);
    border-color: var(--gold);
}

.ranking-box-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.ranking-box-content {
    padding: 32px;
}

.ranking-box-content h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.2;
}

.ranking-box-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.ranking-box-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.ranking-box-link:hover {
    color: var(--gold);
    transform: translateX(4px);
}

/* Methodology Section */
.methodology-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.methodology-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.methodology-content-centered h2 {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 20px;
    line-height: 1.2;
}

.methodology-content-centered p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.methodology-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.methodology-list-wrapper {
    width: 100%;
}

.methodology-image-wrapper {
    width: 100%;
}

.methodology-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.methodology-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.methodology-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.methodology-list li div {
    flex: 1;
}

.bullet-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.methodology-list li strong {
    color: var(--navy);
}

.subjects-carousel {
    margin-top: 60px;
    overflow: hidden;
}

/* Advantages Section */
.advantages-section {
    padding: 100px 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.advantage-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
    border-color: var(--gold);
}

.advantage-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.advantage-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* How to Get Ranked Section */
.get-ranked-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.get-ranked-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.ranked-step {
    background: var(--white);
    padding: 48px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.ranked-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.ranked-step-number {
    font-size: 72px;
    font-weight: bold;
    color: var(--gold);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.ranked-step h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.3;
}

.ranked-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
    overflow: hidden;
}

/* About Us Page Styles */
.about-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

.about-hero-title {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.2;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-subtitle {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-main-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-title-left {
    font-size: 42px;
    color: var(--navy);
    margin-bottom: 24px;
    line-height: 1.2;
    text-align: left;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.mission-vision-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.mv-image {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

.mv-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.mv-card h3 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.mv-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

.stats-section {
    padding: 100px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    padding: 48px 32px;
    border-radius: 16px;
    text-align: center;
    border: 2px solid var(--gold-light);
    transition: all 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 56px;
    font-weight: bold;
    color: var(--gold-dark);
    margin-bottom: 12px;
    line-height: 1;
}

.stat-label {
    font-size: 16px;
    color: var(--navy);
    font-weight: 600;
}

.testimonials-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border-left: 4px solid var(--gold);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--navy);
    margin-bottom: 4px;
    font-weight: 600;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--gray-dark);
    line-height: 1.4;
}

/* Ranking Pages Styles */
.ranking-page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    text-align: center;
}

.ranking-page-title {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 20px;
    line-height: 1.2;
}

.ranking-page-subtitle {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    opacity: 0.95;
}

.ranking-list-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.universities-list {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.university-card-detailed {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.4s ease;
    border-left: 4px solid transparent;
}

.university-card-detailed:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.15);
    border-left-color: var(--gold);
}

.uni-rank-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.uni-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray);
}

.uni-logo-wrapper {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid var(--gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    flex-shrink: 0;
}

.uni-logo-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.uni-info h3 {
    font-size: 26px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.uni-location {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.uni-score {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
}

.uni-score span {
    color: var(--gold-dark);
    font-size: 20px;
    font-weight: bold;
}

.uni-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 32px;
}

.metric-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--gray-dark);
    font-weight: 600;
}

.metric-bar {
    width: 100%;
    height: 8px;
    background: var(--gray);
    border-radius: 4px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
    transition: width 1s ease;
    border-radius: 4px;
}

.metric-value {
    font-size: 16px;
    color: var(--navy);
    font-weight: bold;
}

/* Accordion Styles */
.universities-accordion {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.accordion-item.active {
    border-left-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(212, 175, 55, 0.05);
}

.uni-rank-badge-small {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    flex-shrink: 0;
}

.uni-logo-small {
    width: 50px;
    height: 50px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    flex-shrink: 0;
    background: var(--white);
}

.uni-logo-small img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.uni-title-info {
    flex: 1;
}

.uni-title-info h3 {
    font-size: 20px;
    color: var(--navy);
    margin-bottom: 4px;
    line-height: 1.2;
}

.uni-title-info p {
    font-size: 14px;
    color: var(--gray-dark);
}

.uni-score-badge {
    font-size: 16px;
    font-weight: 600;
    color: var(--gold-dark);
    background: rgba(212, 175, 55, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
}

.accordion-arrow {
    font-size: 32px;
    color: var(--gold);
    font-weight: bold;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
}

.accordion-content {
    padding: 0 30px 24px;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.apply-btn {
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

/* Lead Form Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 100%;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 32px;
    color: var(--gray-dark);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--gray-light);
    color: var(--navy);
}

.modal-title {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--gray-dark);
    margin-bottom: 24px;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lead-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.lead-form input,
.lead-form select {
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.lead-form input:focus,
.lead-form select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.lead-submit-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    margin-top: 8px;
}

.lead-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

.subjects-track {
    display: flex;
    gap: 24px;
    animation: scrollSubjects 40s linear infinite;
}

@keyframes scrollSubjects {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.subject-card {
    flex: 0 0 auto;
    width: 300px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.subject-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.subject-image {
    width: 100%;
    height: 180px;
    background-size: cover;
    background-position: center;
}

.subject-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    color: var(--navy);
}

.subject-card p {
    padding: 0 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-dark);
}

/* Articles Section */
.articles-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 700px;
    margin: -40px auto 60px;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.article-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
}

.article-image {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
}

.article-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.article-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 20px;
    flex: 1;
}

.article-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray);
}

.article-meta .author {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.article-meta .role {
    font-size: 13px;
    color: var(--gray-dark);
}

.article-link {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    align-self: flex-start;
}

.article-link::after {
    content: '→';
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.article-link:hover {
    color: var(--gold);
}

.article-link:hover::after {
    transform: translateX(4px);
}

/* Steps Section */
.steps-section {
    padding: 100px 0;
    background: var(--white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    transition: all 0.4s ease;
}

.step-item:hover .step-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    transform: scale(1.1) rotate(5deg);
}

.step-number {
    font-size: 72px;
    font-weight: bold;
    color: var(--gold);
    opacity: 0.15;
    position: absolute;
    top: -20px;
    right: 20%;
    line-height: 1;
    z-index: -1;
}

.step-item h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.faq-item:hover {
    border-left-color: var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
}

.faq-item h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ranking-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .rankings-grid {
        grid-template-columns: 1fr;
    }
    
    .methodology-grid-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .get-ranked-steps {
        grid-template-columns: 1fr;
    }
    
    .about-content-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .uni-metrics {
        grid-template-columns: 1fr;
    }
    
    .uni-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .uni-rank-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .accordion-header {
        flex-wrap: wrap;
        gap: 12px;
        padding: 15px 20px;
    }
    
    .uni-title-info h3 {
        font-size: 16px;
    }
    
    .uni-score-badge {
        font-size: 14px;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .modal-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero-title-new {
        font-size: 36px;
    }
    
    .hero-description-new {
        font-size: 16px;
    }
    
    .hero-form-wrapper {
        padding: 32px 24px;
    }
    
    .ranking-cards-grid,
    .steps-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .subject-card {
        width: 280px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 36px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-new {
        padding: 60px 0;
    }
    
    .hero-title-new {
        font-size: 28px;
    }
    
    .phone-input-group {
        grid-template-columns: 80px 1fr;
        gap: 8px;
    }
    
    .logo-box {
        width: 120px;
        height: 70px;
    }
}/* Additional CSS for Internal Pages */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 60%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 48px;
    color: var(--gold);
    margin-bottom: 16px;
    font-weight: bold;
}

.page-subtitle {
    font-size: 20px;
    color: var(--white);
    opacity: 0.95;
}

/* About Content */
.about-content {
    padding: 80px 0;
}

.content-section {
    margin-bottom: 60px;
}

.content-section h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.custom-list {
    list-style: none;
    padding: 0;
}

.custom-list li {
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 16px;
    line-height: 1.7;
}

.custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* Ranking Pages */
.ranking-hero {
    background: linear-gradient(135deg, rgba(10, 31, 68, 0.95) 0%, rgba(26, 58, 95, 0.93) 100%),
                url('https://images.unsplash.com/photo-1583373834259-46cc92173cb7?w=1600&q=80') center/cover;
}

.ranking-content {
    padding: 80px 0;
    background: var(--gray-light);
}

.ranking-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
}

.institute-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.institute-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 80px 300px 1fr;
    gap: 0;
    transition: all 0.4s ease;
    position: relative;
}

.institute-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.institute-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.15);
}

.institute-card:hover::before {
    opacity: 1;
}

.rank-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: var(--gold);
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(212, 175, 55, 0.02));
}

.institute-card.rank-1 .rank-badge {
    font-size: 56px;
    color: var(--gold-dark);
}

.institute-card.rank-2 .rank-badge {
    font-size: 52px;
}

.institute-image {
    width: 300px;
    height: 100%;
    background-size: cover;
    background-position: center;
    min-height: 250px;
}

.institute-info {
    padding: 40px;
}

.institute-info h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 8px;
}

.institute-card.rank-1 .institute-info h2 {
    font-size: 32px;
}

.location {
    color: var(--gray-dark);
    font-size: 15px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.location::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="none" stroke="%23666" stroke-width="2"><path d="M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z"/><circle cx="12" cy="10" r="3"/></svg>') no-repeat center;
}

.description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.highlight-tag {
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    color: var(--gold-dark);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Contact Page */
.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 40px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.method-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 4px;
}

.contact-method p {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.6;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

/* Resources Page */
.resources-content {
    padding: 80px 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.resource-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10, 31, 68, 0.12);
    border-color: var(--gold-light);
}

.resource-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    margin-bottom: 24px;
}

.resource-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 12px;
}

.resource-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-dark);
    margin-bottom: 20px;
}

.resource-list {
    list-style: none;
    padding: 0;
}

.resource-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.6;
}

.resource-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 16px;
}

/* Legal Pages */
.legal-content {
    padding: 80px 0;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    color: var(--navy);
    margin-bottom: 16px;
}

.legal-section h3 {
    font-size: 20px;
    color: var(--navy-light);
    margin: 24px 0 12px;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-section li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .institute-card {
        grid-template-columns: 70px 250px 1fr;
    }
    
    .institute-image {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 36px;
    }
    
    .page-subtitle {
        font-size: 18px;
    }
    
    .institute-card {
        grid-template-columns: 1fr;
    }
    
    .institute-image {
        width: 100%;
        height: 200px;
    }
    
    .rank-badge {
        position: absolute;
        top: 16px;
        right: 16px;
        padding: 12px 20px;
        background: rgba(212, 175, 55, 0.95);
        border-radius: 8px;
        color: var(--navy);
        font-size: 32px;
        z-index: 10;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 60px 0;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .institute-info {
        padding: 24px;
    }

}

/* ========================================
   RESOURCES PAGE STYLES
   ======================================== */

/* Blogs Section */
.blogs-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.blogs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-content {
    padding: 28px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
}

.read-more-btn:hover {
    color: var(--secondary-orange);
    transform: translateX(5px);
}

/* Latest News Section */
.news-section {
    padding: 80px 0;
    background: white;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

.news-card {
    background: #f8f9fa;
    padding: 28px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.news-card:hover {
    background: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.news-date {
    display: inline-block;
    font-size: 13px;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.news-card h3 {
    font-size: 19px;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 12px;
    line-height: 1.4;
}

.news-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.news-link-arrow {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.news-card:hover .news-link-arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 48px auto 0;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 8px 24px rgba(197, 166, 93, 0.15);
    border-color: rgba(197, 166, 93, 0.3);
}

.faq-item.active {
    border-color: var(--primary-orange);
    box-shadow: 0 8px 24px rgba(197, 166, 93, 0.2);
}

.faq-question {
    padding: 28px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    user-select: none;
    position: relative;
}

.faq-question::before {
    content: "?";
    position: absolute;
    left: 32px;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question::before {
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-black) 100%);
    transform: translateY(-50%) rotate(180deg);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-black);
    margin: 0;
    flex: 1;
    padding-left: 52px;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question h3 {
    color: var(--primary-orange);
}

.faq-arrow {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-orange);
    flex-shrink: 0;
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(197, 166, 93, 0.1);
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
    background: rgba(197, 166, 93, 0.2);
}

.faq-answer {
    padding: 0 32px 32px 120px;
    animation: fadeIn 0.4s ease;
}

.faq-answer p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin: 0;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-orange);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.d-none {
    display: none !important;
}

/* ========================================
   CONTRIBUTORS SECTION STYLES
   ======================================== */

.contributors-section {
    padding: 80px 0;
    background: white;
}

.contributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 48px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.contributor-card {
    text-align: center;
    transition: transform 0.3s ease;
}

.contributor-card:hover {
    transform: translateY(-8px);
}

.contributor-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-orange);
    box-shadow: 0 8px 20px rgba(197, 166, 93, 0.2);
    transition: all 0.3s ease;
}

.contributor-card:hover .contributor-image {
    border-color: var(--dark-black);
    box-shadow: 0 12px 30px rgba(30, 58, 95, 0.25);
}

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

.contributor-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 8px;
}

.contributor-info p {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
}

/* ========================================
   BLOG DETAIL PAGE STYLES
   ======================================== */

.blog-detail-page {
    background: white;
}

.blog-hero-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
}

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

.blog-detail-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 60px 20px;
}

.blog-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.blog-breadcrumb a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: var(--secondary-orange);
}

.blog-breadcrumb span {
    margin: 0 8px;
}

.blog-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark-black);
    line-height: 1.3;
    margin-bottom: 24px;
}

.blog-meta {
    display: flex;
    gap: 24px;
    font-size: 15px;
    color: #666;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e9ecef;
}

.blog-author {
    font-weight: 600;
    color: var(--dark-black);
}

.blog-date {
    color: #888;
}

.blog-detail-content {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.blog-detail-content h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-black);
    margin: 48px 0 20px 0;
}

.blog-detail-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--dark-black);
    margin: 36px 0 16px 0;
}

.blog-detail-content p {
    margin-bottom: 24px;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin: 24px 0;
    padding-left: 28px;
}

.blog-detail-content li {
    margin-bottom: 12px;
    line-height: 1.8;
}

.blog-detail-content strong {
    font-weight: 600;
    color: var(--dark-black);
}

.blog-detail-footer {
    margin-top: 60px;
    padding-top: 36px;
    border-top: 2px solid #e9ecef;
}

.back-to-resources {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    border-radius: 6px;
}

.back-to-resources:hover {
    background: var(--primary-orange);
    color: white;
}

/* Responsive Styles for Resources Page */
@media (max-width: 768px) {
    .blogs-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contributors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .contributor-image {
        width: 160px;
        height: 160px;
    }

    .contributor-info h3 {
        font-size: 18px;
    }

    .contributor-info p {
        font-size: 14px;


/* ========================================
   PAGE BANNERS (COMMON STYLES)
   ======================================== */

.page-banner {
    position: relative;
    min-height: 350px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-black) 0%, var(--dark-black) 100%) !important;
    padding: 80px 20px !important;
    overflow: hidden;
    margin-top: 0 !important;
    width: 100%;
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 10px,
            rgba(197, 166, 93, 0.03) 10px,
            rgba(197, 166, 93, 0.03) 20px
        );
    z-index: 1;
}

.banner-content {
    position: relative;
    z-index: 3;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.banner-title {
    font-size: 56px !important;
    font-weight: 700 !important;
    color: var(--primary-orange) !important;
    margin-bottom: 20px !important;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
    line-height: 1.2;
}

.banner-subtitle {
    font-size: 19px !important;
    color: rgba(255, 255, 255, 0.95) !important;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-main-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 0;
}

.contact-form-container,
.contact-info-container {
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-form-container h2,
.contact-info-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--dark-black);
    margin-bottom: 16px;
    line-height: 1.3;
}

.form-description,
.info-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 36px;
    line-height: 1.6;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 10px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(197, 166, 93, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #adb5bd;
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 166, 93, 0.3);
}

.contact-info-items {
    margin-top: 32px;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    margin-bottom: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.social-links {
    margin-top: 32px;
    padding-top: 32px;
    border-top: 2px solid #e9ecef;
}

.social-links h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-black);
    margin-bottom: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-icon {
    padding: 10px 20px;
    background: #f8f9fa;
    color: var(--dark-black);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-2px);
}

/* ========================================
   LEGAL PAGES STYLES (PRIVACY & TERMS)
   ======================================== */

.legal-content-section {
    padding: 80px 0;
    background: white;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-text {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 24px;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-orange);
    border-radius: 8px;
}

.legal-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-black);
    margin-top: 48px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-orange);
}

.legal-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--dark-black);
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content strong {
    font-weight: 600;
    color: var(--dark-black);
}

.contact-details {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 12px;
    margin: 24px 0;
}

.contact-details p {
    margin-bottom: 8px;
}

.back-link {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #e9ecef;
}

.back-link a {
    display: inline-block;
    color: var(--primary-orange);
    font-weight: 600;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid var(--primary-orange);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.back-link a:hover {
    background: var(--primary-orange);
    color: white;
}

/* Responsive Styles for Contact and Legal Pages */
@media (max-width: 768px) {
    .page-banner {
        min-height: 280px;
        padding: 60px 20px;
    }

    .banner-title {
        font-size: 40px;
    }

    .banner-subtitle {
        font-size: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 32px;
    }

    .legal-content h2 {
        font-size: 24px;
    }

    .legal-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        min-height: 240px;
        padding: 50px 20px;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 15px;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 24px;
    }

    .contact-form-container h2,
    .contact-info-container h2 {
        font-size: 26px;
    }

    .info-item {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .social-icons {
        flex-direction: column;
    }

    .social-icon {
        text-align: center;
    }

    .legal-content {
        padding: 0 20px;
    }

    .legal-content h2 {
        font-size: 22px;
    }

    .intro-text,
    .legal-content p,
    .legal-content li {
        font-size: 15px;
    }
}

    }

    .blog-hero-image {
        height: 280px;
    }

    .blog-detail-title {
        font-size: 32px;
    }

    .blog-detail-content {
        font-size: 16px;
    }

    .blog-detail-content h2 {
        font-size: 26px;
    }

    .faq-question h3 {
        font-size: 16px;
        padding-left: 48px;
    }

    .faq-question::before {
        width: 32px;
        height: 32px;
        font-size: 18px;
        left: 24px;
    }

    .faq-answer {
        padding: 0 24px 24px 80px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .blogs-section,
    .news-section,
    .faq-section,
    .contributors-section {
        padding: 50px 0;
    }

    .contributors-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .contributor-image {
        width: 140px;
        height: 140px;
    }

    .blog-hero-image {
        height: 220px;
    }

    .blog-detail-title {
        font-size: 28px;
    }

    .blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .faq-question {
        padding: 20px 24px;
    }

    .faq-question h3 {
        font-size: 15px;
        padding-left: 44px;
    }

    .faq-question::before {
        width: 28px;
        height: 28px;
        font-size: 16px;
        left: 20px;
    }

    .faq-arrow {
        width: 28px;
        height: 28px;
        font-size: 28px;
    }

    .faq-answer {
        padding: 0 20px 20px 72px;
    }

}


.legal-content h2 {
    padding: 10px 0;
}
.legal-content ul {
    padding: 0 0 0 20px;
}