/* Global Styles */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #3b82f6;
    --accent-color: #f59e0b;
    --light-color: #f8fafc;
    --dark-color: #0f172a;
    --gray-color: #64748b;
    --light-gray: #e2e8f0;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

h2:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: white !important;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white !important;
}

.btn-accent {
    background-color: var(--accent-color);
}

.btn-accent:hover {
    background-color: #e69009;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2:after {
    left: 50%;
    transform: translateX(-50%);
}

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

.section-summary {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.view-more-link {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.view-more-link i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.view-more-link:hover i {
    transform: translateX(5px);
}

/* Language Selector Dropdown Styles */
.language-selector {
    position: relative;
    margin-left: 1rem;
    z-index: 1010;
}

.language-current {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
}

.language-current:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-current i {
    margin-left: 0.4rem;
    font-size: 0.8rem;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: white;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    overflow: hidden;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: block;
    padding: 0.8rem 1rem;
    text-decoration: none;
    color: var(--dark-color);
    font-size: 0.9rem;
    transition: var(--transition);
    text-align: left;
}

.language-option:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.language-option.active {
    color: var(--primary-color);
    font-weight: 700;
    background-color: rgba(0, 0, 0, 0.03);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    margin-right: auto;
    margin-left: 2rem;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 600;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition);
}

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

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-right: 1rem;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

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

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8));
    overflow: hidden;
    margin-top: 0;
    padding-top: 80px;
}

.hero-content {
    width: 100%;
    max-width: 700px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Index Page Specific Styles */
.about-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
}

.about-summary-image {
    width: 40%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-summary-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-summary-image:hover img {
    transform: scale(1.03);
}

.about-summary-content {
    width: 55%;
}

/* Topics Preview */
.topics-bg {
    background-color: #f1f5f9;
}

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

.topic-preview-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
    padding: 2rem;
}

.topic-preview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

/* Contact Preview */
.contact-preview {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.contact-preview-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.contact-preview-method {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-preview-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-preview-text {
    text-align: center;
}

.contact-preview-text p {
    margin-bottom: 0.3rem;
}

/* About Page Styles */
.page-header {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8));
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs a:hover {
    color: white;
}

.breadcrumbs .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumbs .current {
    color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 5rem;
}

.about-image {
    position: relative;
}

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

.about-image .experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.experience-number {
    font-size: 2.5rem;
    line-height: 1;
}

.experience-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    margin-top: 0;
}

.bio-highlight {
    background-color: #f1f5f9;
    border-left: 4px solid var(--accent-color);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.1rem;
}

.contact-cta {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.9), rgba(59, 130, 246, 0.8));
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.contact-cta h2 {
    color: white;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.contact-cta h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
}

.contact-cta p {
    max-width: 600px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.cookie-text {
    margin-bottom: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: white;
    border: none;
}

.cookie-accept:hover {
    background-color: #e69009;
    transform: translateY(-2px);
}

.cookie-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-decline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.cookie-more {
    background-color: transparent;
    color: white;
    border: none;
    text-decoration: underline;
}

.cookie-more:hover {
    opacity: 0.8;
}

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

.contact-box {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8fafc;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-box h3 {
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
    display: inline-block;
}

.contact-box h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 1rem auto 2rem;
}

.contact-details h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--gray-color);
    font-size: 1.1rem;
}

.contact-email {
    font-size: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    display: inline-block;
    margin: 1rem 0;
}

.contact-email:hover {
    color: var(--accent-color);
}

.email-button {
    display: inline-block;
    margin-top: 2rem;
}

/* Privacy Page Styles */
.privacy-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-section h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.privacy-section p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.privacy-section .last-updated {
    font-style: italic;
    color: var(--gray-color);
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid var(--light-gray);
}

.privacy-section .legal-entity {
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
    margin: 2rem 0;
}

/* Topics Page Styles */
.topic-section {
    padding: 5rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.topic-section:last-of-type {
    border-bottom: none;
}

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

.topic-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.topic-outcomes {
    margin-top: 2rem;
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.topic-outcome-list {
    list-style: none;
    padding: 0;
}

.topic-outcome-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

.topic-outcome-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 0.8rem;
    height: 0.8rem;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.topic-formats {
    background-color: #f1f5f9;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 8px;
}

.topic-formats h4 {
    margin-top: 0;
}

.topic-formats ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.topic-formats li {
    background-color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .about-summary {
        flex-direction: column;
    }
    
    .about-summary-image {
        width: 80%;
        margin-bottom: 2rem;
    }
    
    .about-summary-content {
        width: 100%;
    }
    
    .topics-preview {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        z-index: 999;
        margin: 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
    
    .topic-formats ul {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }
    
    .topics-preview {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 7rem 0 3rem;
    }
    
    .about-image .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -20px;
        right: -20px;
    }
    
    .experience-number {
        font-size: 2rem;
    }
    
    .contact-preview-methods {
        flex-direction: column;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .about-summary-image {
        width: 100%;
    }
    
    .about-image .experience-badge {
        width: 80px;
        height: 80px;
        bottom: -15px;
        right: -15px;
    }
    
    .experience-number {
        font-size: 1.5rem;
    }
    
    .experience-text {
        font-size: 0.7rem;
    }
}