:root {
    --primary-blue: #1e88a8;
    --deep-navy: #0a2540;
    --warm-white: #fdfcfa;
    --soft-gray: #f4f4f2;
    --accent-gold: #d4af37;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --shadow-soft: rgba(0, 0, 0, 0.08);
}

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

body {
    font-family: 'BPG Nino Mtavruli', 'Montserrat', -apple-system, sans-serif;
    color: var(--text-dark);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.5rem 0;
    box-shadow: 0 2px 20px var(--shadow-soft);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 1rem 0;
    box-shadow: 0 4px 30px var(--shadow-soft);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05) rotate(-5deg);
}

.logo-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-blue);
    line-height: 1.3;
    max-width: 280px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 90px;
    min-height: 85vh;
    background: linear-gradient(135deg, #0a2540 0%, #1e3a5f 50%, #1e88a8 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(30, 136, 168, 0.15) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
    animation: slideInLeft 0.8s ease-out 0.2s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 0.8s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--deep-navy);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-blue);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
    display: block;
    margin-bottom: 1rem;
}

.hero-visual {
    position: relative;
    animation: fadeIn 1s ease-out 0.5s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-logo-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-logo {
    width: 320px;
    max-width: 100%;
    height: auto;
}

/* Page Header */
.page-header {
    margin-top: 90px;
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
    color: white;
    text-align: center;
}

.page-header h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Section Styles */
section {
    padding: 6rem 0;
}

.content-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-blue);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 1.5rem auto 0;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Quick Info */
.quick-info {
    background: var(--soft-gray);
    padding: 4rem 0;
}

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

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: transform 0.3s ease;
}

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

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

.info-card h3 {
    font-size: 1.2rem;
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
}

.info-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Programs */
.featured-programs {
    padding: 6rem 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.program-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px var(--shadow-soft);
}

.program-content {
    padding: 2.5rem;
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), #1a6b85);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.program-card h3 {
    font-size: 1.4rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.learn-more {
    color: var(--primary-blue);
    font-weight: 600;
    display: inline-block;
    margin-top: 0.5rem;
}

/* Programs Detailed Listing */
.programs-listing {
    padding: 4rem 0;
}

.programs-grid-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.program-card-detailed {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px var(--shadow-soft);
    border-left: 5px solid var(--primary-blue);
}

.program-header {
    display: flex;
    gap: 2rem;
    align-items: start;
    margin-bottom: 2rem;
}

.program-icon-large {
    font-size: 4rem;
    flex-shrink: 0;
}

.program-title-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.program-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.program-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.program-highlights {
    background: var(--soft-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.program-highlights h4 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.program-highlights ul {
    list-style: none;
    padding: 0;
}

.program-highlights li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-medium);
}

.program-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
}

/* Program Detail Page */
.program-detail-section {
    padding: 4rem 0;
}

.breadcrumb {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
}

.program-detail-section .container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.program-detail-content {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.sidebar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    margin-bottom: 1.5rem;
}

.info-item strong {
    display: block;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-medium);
}

.related-programs {
    list-style: none;
}

.related-programs li {
    margin-bottom: 1rem;
}

.related-programs a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-programs a:hover {
    color: var(--primary-blue);
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.about-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.about-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.about-card p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mission Section */
.mission-section {
    background: linear-gradient(135deg, var(--primary-blue), #1a6b85);
    padding: 6rem 0;
}

.highlight-box {
    color: white;
    padding: 3rem;
    border-radius: 20px;
}

.highlight-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.mission-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.mission-item p {
    line-height: 1.8;
    opacity: 0.95;
}

/* Values */
.values-section {
    padding: 6rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-soft);
    transition: transform 0.3s ease;
}

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

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.value-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

/* Documents */
.regulations-section,
.documents-section {
    padding: 6rem 0;
}

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

.doc-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.doc-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-soft);
}

.doc-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.doc-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--deep-navy);
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

.doc-item p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.doc-actions {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: auto;
}

.doc-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.doc-link:hover {
    text-decoration: underline;
}

.doc-download {
    display: inline-block;
    background: var(--primary-blue);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1rem;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.doc-download:hover {
    background: var(--deep-navy);
}

/* Benefits */
.benefits-section {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
}

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

.benefit-item h3 {
    color: var(--deep-navy);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: var(--text-medium);
}

/* Why Choose Us */
.why-choose {
    padding: 6rem 0;
}

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

.feature-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.feature-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--deep-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-item p {
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--deep-navy), var(--primary-blue));
    color: white;
    padding: 6rem 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

/* Admission Page */
.admission-notice {
    background: linear-gradient(135deg, var(--primary-blue), #1a6b85);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 4rem;
}

.admission-notice h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.admission-steps {
    margin: 4rem 0;
}

.admission-steps h2 {
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 3rem;
}

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

.step-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow-soft);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    color: var(--deep-navy);
    margin-bottom: 1rem;
}

.step-card p {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.requirements-section {
    background: var(--soft-gray);
    padding: 3rem;
    border-radius: 20px;
    margin-top: 3rem;
}

.requirements-section h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

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

.requirements-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.note {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--text-medium);
}

/* Library Page */
.coming-soon-box {
    text-align: center;
    background: white;
    padding: 5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

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

.coming-soon-box h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--deep-navy);
    margin-bottom: 1.5rem;
}

.coming-soon-box p {
    color: var(--text-medium);
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Contact Page */
.contact-page-section {
    padding: 4rem 0;
}

.contact-info-page {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px var(--shadow-soft);
}

.contact-info-page h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--deep-navy);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--deep-navy);
}

.contact-details p,
.contact-details a {
    color: var(--text-medium);
}

.contact-details a {
    text-decoration: none;
}

.contact-details a:hover {
    color: var(--primary-blue);
}

.map-container-large {
    height: 500px;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow-soft);
    background: var(--soft-gray);
}

.map-container-large iframe {
    display: block;
    width: 100%;
    height: 100%;
}

/* Footer */
footer {
    background: #0a1929;
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

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

.footer-bottom p {
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid,
    .contact-grid,
    .mission-content {
        grid-template-columns: 1fr;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

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

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

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

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

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

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

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

    .program-detail-section .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .container {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .programs-grid,
    .info-grid,
    .documents-grid,
    .benefits-grid,
    .values-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

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

    .program-header {
        flex-direction: column;
        text-align: center;
    }

    .program-meta {
        justify-content: center;
    }
}

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

.program-card:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
.program-card:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
.program-card:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
.program-card:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }

html {
    scroll-behavior: smooth;
}

/* ===== PARTNERS ===== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.partner-item {
    background: white;
    border: 1px solid rgba(30, 136, 168, 0.2);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: 600;
    color: var(--deep-navy);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.partner-item:hover {
    box-shadow: 0 4px 20px var(--shadow-soft);
    border-color: var(--primary-blue);
}

/* ===== FAQ ===== */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem 0;
    text-align: left;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-question:hover {
    color: var(--primary-blue);
}

.faq-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: var(--primary-blue);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: var(--text-medium);
    line-height: 1.7;
}

.faq-answer a {
    color: var(--primary-blue);
}

/* ===== LOGO IMAGE ===== */
.logo-img-real {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

/* ===== MOBILE FRIENDLY ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 1.2rem;
    }

    .nav-container {
        padding: 0 1.2rem;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    .hero {
        margin-top: 70px;
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

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

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

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

    .programs-grid-detailed {
        grid-template-columns: 1fr;
    }

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

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

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

    .map-container-large {
        height: 300px;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .logo-text {
        font-size: 0.75rem;
        max-width: 180px;
    }

    .program-detail-section .container {
        flex-direction: column;
    }

    .program-sidebar {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

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

    .hero-text h1 {
        font-size: 1.6rem;
    }
}
