/* ===================================
   Global Styles & Reset
   =================================== */
:root {
    /* Logo-Farben */
    --primary-color: #B8753D;        /* Warmes Orange-Braun - Struktur & Klarheit */
    --secondary-color: #E89450;      /* Helles Orange - Verbindung & Energie */
    --accent-color: #E89450;         /* Helles Orange für Akzente */
    --dark-color: #B8753D;           /* Warmes Orange-Braun für dunkle Texte */
    --light-color: #FBF0DA;          /* Light Cream - Bühne für den Dialog */
    --gray-color: #64748b;           /* Grau bleibt für neutrale Elemente */
    --white: #ffffff;
    --bg-cream: #FBF0DA;             /* Hintergrundfarbe */
    --shadow: 0 4px 6px -1px rgba(184, 117, 61, 0.1), 0 2px 4px -1px rgba(184, 117, 61, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(184, 117, 61, 0.1), 0 10px 10px -5px rgba(184, 117, 61, 0.04);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--bg-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Ausnahmen für bestimmte Bereiche - kein Uppercase */
.reference-description,
.about-text h3,
.whitepaper-card h4,
.hero-subtitle,
.hero-name {
    text-transform: none;
}

/* Hero Name extra stark */
.hero-name {
    font-weight: 700;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.section {
    padding: 5rem 0;
    scroll-margin-top: 80px;
}

/* ===================================
   Navigation Bar
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 1);
    box-shadow: var(--shadow-lg);
}

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

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

.logo-image {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 300px;
}

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

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

.nav-link {
    font-weight: 500;
    color: var(--dark-color);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.btn-contact {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 0.5rem;
}

.btn-contact::after {
    display: none;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* ===================================
   Hero Section - Neues Layout
   =================================== */
.hero-with-photo {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #000000;
    padding: 0;
    overflow: visible;
}

.hero-content-wrapper {
    max-width: 1900px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 0;
}

/* Zitat Links */
.hero-quote-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-bottom: 6rem;
    flex: 0 0 auto;
    min-width: 280px;
    margin-right: 1rem;
}

.hero-quote-box {
    position: relative;
    animation: fadeInLeft 1.2s ease;
    white-space: nowrap;
}

.quote-icon-large {
    font-size: 2rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

.hero-quote-line1,
.hero-quote-line2,
.hero-quote-line {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.8);
    white-space: nowrap;
}

.hero-quote-box .fa-quote-right {
    margin-left: 0;
}

.hero-author-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-style: normal;
    margin-top: 1.5rem;
    display: block;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

/* Bild Rechts - läuft nach unten heraus */
.hero-image-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: visible;
    flex: 1 1 auto;
}

.hero-photo-person {
    width: 100%;
    max-width: 1200px;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-content-wrapper {
        gap: 2rem;
        padding: 0 2rem;
    }
    
    .hero-quote-line1,
    .hero-quote-line2 {
        font-size: 2.5rem;
    }
    
    .hero-author-name {
        font-size: 1.3rem;
    }
    
    .quote-icon-large {
        font-size: 3.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-content-wrapper {
        flex-direction: column;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .hero-quote-left {
        padding-bottom: 2rem;
        align-items: center;
        text-align: center;
        width: 100%;
        margin-right: 0;
    }
    
    .hero-quote-box {
        white-space: normal;
    }
    
    .hero-image-right {
        justify-content: center;
        width: 100%;
    }
    
    .hero-photo-person {
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .hero-with-photo {
        min-height: auto;
        padding: 80px 0 40px 0;
    }
    
    .hero-content-wrapper {
        padding: 1rem;
        gap: 2rem;
    }
    
    .hero-quote-left {
        padding-bottom: 1rem;
    }
    
    .hero-quote-line,
    .hero-quote-line1,
    .hero-quote-line2 {
        font-size: 1.5rem;
        white-space: normal;
        line-height: 1.4;
    }
    
    .hero-author-name {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    
    .quote-icon-large {
        font-size: 1.8rem;
    }
    
    .hero-photo-person {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content-wrapper {
        padding: 0.5rem;
    }
    
    .hero-quote-line,
    .hero-quote-line1,
    .hero-quote-line2 {
        font-size: 1.3rem;
    }
    
    .hero-author-name {
        font-size: 1.1rem;
    }
    
    .quote-icon-large {
        font-size: 1.5rem;
    }
}

@media (max-width: 1400px) {
    .why-me-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hero-slogan {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.slogan-highlight {
    display: block;
    font-weight: 600;
    font-size: 1.75rem;
    margin-top: 1rem;
    color: var(--secondary-color);
}

.slogan-subline {
    display: block;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

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

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(194, 107, 46, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    display: block;
    width: 24px;
    height: 36px;
    border: 2px solid var(--white);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background-color: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

/* ===================================
   Hero Text Section
   =================================== */
.hero-text-section {
    padding: 100px 0 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-align: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.hero-text-content {
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-text-section .hero-title {
    margin-bottom: 2rem;
}

.hero-text-section .hero-name {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-text-section .hero-subtitle {
    display: block;
    font-size: 1.75rem;
    font-weight: 400;
    opacity: 0.95;
    color: var(--white);
}

.hero-text-section .hero-slogan {
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--white);
}

.hero-text-section .slogan-subline {
    display: block;
    font-weight: 400;
    font-size: 1.2rem;
    margin-top: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .hero-text-section {
        padding: 60px 20px;
    }
    
    .hero-text-section .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-text-section .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-text-section .hero-slogan {
        font-size: 1.2rem;
    }
    
    .hero-text-section .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ===================================
   Section Headers
   =================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   About Section
   =================================== */
.about-section {
    background-color: var(--white);
    padding-top: 8rem;
    position: relative;
    z-index: 10;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    object-fit: cover;
}

.profile-image:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.about-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.about-text p strong {
    color: var(--primary-color);
    font-weight: 600;
}

.about-highlights {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(10px);
    background-color: #e0f2fe;
}

.highlight-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 1.05rem;
    color: var(--dark-color);
}

.qualifications-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.qualifications-list li {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.qualifications-list li::before {
    content: '🏆';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.qualifications-list li strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   Gallery Section
   =================================== */
.gallery-section {
    background-color: var(--light-color);
}

.gallery-subsection {
    margin-bottom: 4rem;
}

.gallery-subsection:last-child {
    margin-bottom: 0;
}

.gallery-subtitle {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
    font-family: 'Playfair Display', serif;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 64, 175, 0.9), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    text-align: center;
}

/* ===================================
   References Section NEW
   =================================== */
.references-section-new {
    background-color: var(--white);
}

.references-grid-new {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
}

.reference-card-new {
    background-color: var(--light-color);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.reference-card-new.featured {
    border-left: 6px solid var(--secondary-color);
}

.reference-card-new:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.reference-header-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 1rem;
}

.reference-header-new h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    flex: 1;
}

.reference-header-new h3 i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 2px solid var(--secondary-color);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.gallery-link:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateX(5px);
}

.reference-body-new {
    color: var(--dark-color);
}

.reference-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.reference-gallery-4 {
    grid-template-columns: repeat(4, 1fr);
}

.gallery-item-small {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3;
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.gallery-item-small:hover img {
    transform: scale(1.05);
}

.reference-highlights {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary-color);
}

.reference-highlights h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--dark-color);
    line-height: 1.6;
}

.highlights-list li i {
    color: var(--secondary-color);
    margin-top: 0.25rem;
}

.photo-copyright {
    font-size: 0.9rem;
    color: var(--gray-color);
    font-style: italic;
    margin-top: 1rem;
    text-align: right;
    padding-right: 0.5rem;
}

.photo-copyright i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

/* ===================================
   References Section OLD (KEEP FOR BACKWARDS COMPAT)
   =================================== */
.references-section {
    background-color: var(--white);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-marker {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 1rem;
    z-index: 2;
}

.timeline-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1rem 1.5rem;
    border-radius: 2rem;
    box-shadow: var(--shadow-lg);
    min-width: 100px;
    text-align: center;
}

.timeline-content {
    grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    grid-row: 1;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
    grid-row: 1;
}

.reference-card {
    background-color: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gray-color);
    transition: all 0.3s ease;
}

.reference-card.featured {
    border-left-color: var(--secondary-color);
    border-left-width: 6px;
}

.reference-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.reference-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.reference-header h3 {
    color: var(--primary-color);
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reference-header i {
    color: var(--secondary-color);
}

.reference-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-color);
    font-size: 1rem;
    background-color: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
}

.reference-body {
    color: var(--dark-color);
}

.reference-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.reference-highlights {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.highlight-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #e0f2fe, #d1fae5);
    padding: 0.75rem 1.25rem;
    border-radius: 2rem;
    font-weight: 500;
    color: var(--dark-color);
}

.highlight-badge i {
    color: var(--secondary-color);
}

.reference-details {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
}

.reference-details h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.reference-details ul {
    list-style: none;
    padding-left: 0;
}

.reference-details li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    border-bottom: 1px solid #e2e8f0;
}

.reference-details li:last-child {
    border-bottom: none;
}

.reference-details li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.reference-details li strong {
    color: var(--primary-color);
}

.reference-quote {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 2rem 0;
    position: relative;
    font-style: italic;
}

.reference-quote i {
    font-size: 2rem;
    opacity: 0.3;
    margin-bottom: 1rem;
}

.reference-quote p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--white);
}

.reference-quote cite {
    font-size: 1rem;
    font-style: normal;
    opacity: 0.9;
}

.reference-gallery-small {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.reference-gallery-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reference-gallery-small img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.reference-participants h4,
.reference-topics h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.participant-card {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
}

.participant-card:hover {
    background-color: #e0f2fe;
    transform: translateY(-5px);
}

.participant-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.participant-card strong {
    display: block;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.participant-card span {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.participant-card small {
    display: block;
    color: var(--gray-color);
    font-size: 0.9rem;
}

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

.topic-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background-color: var(--light-color);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: linear-gradient(135deg, #e0f2fe, #d1fae5);
    transform: translateX(5px);
}

.topic-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.qualifications-summary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 4rem;
    color: var(--white);
}

.qualifications-summary h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--white);
}

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

.qualification-item {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.qualification-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.qualification-year {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.qualification-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.qualification-org {
    font-size: 1rem;
    opacity: 0.9;
}

.references-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: var(--light-color);
    border-radius: 1rem;
}

.references-cta h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.references-cta p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

/* ===================================
   Target Groups Section NEW
   =================================== */
.target-groups-section-new {
    background-color: var(--white);
}

.target-groups-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.target-group-card-new {
    background-color: var(--light-color);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-color);
}

.target-group-card-new:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-left-width: 8px;
}

.target-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.target-group-card-new h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.target-group-card-new p {
    color: var(--dark-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.micro-cta {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.micro-cta:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* Target Groups CTA Button */
.target-groups-cta {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(184, 117, 61, 0.2);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(184, 117, 61, 0.3);
}

.btn-large:hover {
    box-shadow: 0 6px 25px rgba(184, 117, 61, 0.5);
    transform: translateY(-3px);
}

.btn-large i {
    font-size: 1.3rem;
}

.cta-text-box {
    margin-top: 2rem;
    padding: 2rem 2.5rem;
    background: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    border-left: 5px solid var(--secondary-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-text-box p {
    font-size: 1.15rem;
    color: var(--dark-color);
    text-align: center;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    background-color: var(--light-color);
}

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

.service-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Services Briefing CTA */
.services-briefing-cta {
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 1rem;
    border: 3px solid var(--secondary-color);
    box-shadow: 0 6px 25px rgba(184, 117, 61, 0.2);
    text-align: center;
}

.briefing-btn {
    background: linear-gradient(135deg, #d32f2f 0%, #c62828 100%);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 20px rgba(211, 47, 47, 0.4);
    position: relative;
}

.briefing-btn:hover {
    background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%);
    box-shadow: 0 6px 30px rgba(211, 47, 47, 0.6);
    transform: translateY(-3px);
}

.briefing-btn i {
    color: #ffeb3b;
    font-size: 1.4rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.briefing-text {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.briefing-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin: 0;
}

.briefing-text strong {
    color: var(--primary-color);
    font-size: 1.25rem;
}

/* ===================================
   Expertise Section
   =================================== */
.expertise-section {
    background-color: var(--white);
}

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

.expertise-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.expertise-card:hover {
    border-left-width: 8px;
    transform: translateX(10px);
    background-color: #e0f2fe;
}

.expertise-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.expertise-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

/* Moderation Approach Layout */
.moderation-approach-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-bottom: 60px;
}

.approach-content {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 1rem;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.approach-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

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

.approach-list li {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    line-height: 1.7;
    color: var(--dark-color);
}

.approach-list li strong {
    color: var(--primary-color);
}

.approach-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.approach-image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

/* ===================================
   Target Groups Section
   =================================== */
.target-groups-section {
    background: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    color: var(--white);
}

.target-groups-section .section-title,
.target-groups-section .section-description {
    color: var(--white);
}

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

.target-group-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.target-group-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.target-group-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
}

.target-group-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.target-group-card p {
    opacity: 0.9;
    line-height: 1.7;
}

/* ===================================
   Why Me Section
   =================================== */
.why-me-section {
    background-color: var(--light-color);
}

.why-me-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 3rem;
}

.why-me-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

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

.why-me-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.why-me-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.why-me-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.why-me-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.why-me-card p {
    color: var(--gray-color);
    line-height: 1.7;
}

.why-me-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
}

.moderator-action-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: 0.5rem;
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    background-color: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: start;
    gap: 1.5rem;
}

.contact-detail i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-detail p {
    color: var(--gray-color);
    margin: 0;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background-color: var(--light-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    transform: translateY(-5px);
}

.first-meeting-box {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.first-meeting-box h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.first-meeting-box h3 i {
    color: var(--secondary-color);
}

.first-meeting-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.first-meeting-list li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    line-height: 1.6;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.first-meeting-list li:last-child {
    border-bottom: none;
}

.first-meeting-list li strong {
    color: var(--primary-color);
}

.first-meeting-meta {
    padding-top: 1rem;
    border-top: 2px solid var(--secondary-color);
    margin-top: 1rem;
}

.first-meeting-meta p {
    margin: 0.5rem 0;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.first-meeting-meta strong {
    color: var(--secondary-color);
}

/* First Meeting Box - Horizontal Layout */
.first-meeting-box-horizontal {
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    border-left: 6px solid var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.first-meeting-header h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.first-meeting-header h3 i {
    color: var(--secondary-color);
    font-size: 2rem;
}

.first-meeting-content-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.first-meeting-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.first-meeting-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.first-meeting-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.3;
}

.first-meeting-item h4 i {
    color: var(--secondary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.first-meeting-item p {
    color: var(--gray-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.first-meeting-meta-horizontal {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 3px solid var(--secondary-color);
}

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

.meta-item i {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.meta-item span {
    color: var(--dark-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.meta-item strong {
    color: var(--primary-color);
}

/* ===================================
   Whitepaper Download Section
   =================================== */
.whitepaper-section {
    margin-top: 80px;
    display: flex;
    justify-content: center;
}

.whitepaper-card {
    max-width: 800px;
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    border: 3px solid var(--secondary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whitepaper-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.whitepaper-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px rgba(194, 107, 46, 0.4);
}

.whitepaper-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.whitepaper-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.4;
}

.whitepaper-intro {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.whitepaper-benefits {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    text-align: left;
}

.whitepaper-benefits p {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.whitepaper-benefits ul {
    list-style: none;
    padding: 0;
}

.whitepaper-benefits li {
    padding: 0.75rem 0;
    color: var(--dark-color);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.whitepaper-benefits li i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.whitepaper-cta {
    margin-top: 2rem;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.whitepaper-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group-inline {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group-inline input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    transition: all 0.3s ease;
}

.form-group-inline input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(194, 107, 46, 0.1);
}

.btn-download {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(194, 107, 46, 0.3);
    transition: all 0.3s ease;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(194, 107, 46, 0.4);
}

.privacy-note {
    font-size: 0.9rem;
    color: var(--gray-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.privacy-note i {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .whitepaper-card {
        padding: 2rem 1.5rem;
    }
    
    .whitepaper-card h3 {
        font-size: 1.6rem;
    }
    
    .whitepaper-card h4 {
        font-size: 1.2rem;
    }
    
    .form-group-inline {
        flex-direction: column;
    }
    
    .btn-download {
        width: 100%;
        justify-content: center;
    }
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 0.5rem;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 400;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label span {
    flex: 1;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--primary-color);
}

.contact-form .btn-primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

.contact-form .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 64, 175, 0.3);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-right {
    display: flex;
    gap: 2rem;
}

.footer-right a {
    color: var(--white);
    opacity: 0.8;
}

.footer-right a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

/* ===================================
   Scroll to Top Button
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

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

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        position: static;
    }
    
    .moderation-approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-photo {
        min-height: 400px;
        order: -1;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .moderation-approach-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-photo {
        min-height: 400px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    /* References Timeline Mobile */
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .timeline-marker {
        grid-column: 1;
        grid-row: 1;
    }
    
    .timeline-content {
        grid-column: 2 !important;
        grid-row: 1 !important;
    }
    
    .timeline-year {
        font-size: 1.2rem;
        padding: 0.75rem 1rem;
        min-width: 80px;
    }
    
    .participants-grid,
    .qualifications-grid {
        grid-template-columns: 1fr;
    }
    
    .first-meeting-content-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .first-meeting-meta-horizontal {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-image {
        height: 60px;
        max-width: 200px;
    }
    
    .logo-name {
        font-size: 1.2rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid #e2e8f0;
    }
    
    .btn-contact {
        width: 100%;
        text-align: center;
    }
    
    .hero-name {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-slogan {
        font-size: 1.2rem;
    }
    
    .slogan-highlight {
        font-size: 1.4rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .services-grid,
    .expertise-grid,
    .target-groups-grid,
    .target-groups-grid-new,
    .why-me-grid,
    .why-me-layout,
    .why-me-grid-2x2,
    .first-meeting-content-grid,
    .first-meeting-meta-horizontal {
        grid-template-columns: 1fr;
    }
    
    .first-meeting-box-horizontal {
        padding: 2rem 1.5rem;
    }
    
    .first-meeting-header h3 {
        font-size: 1.5rem;
    }
    
    .first-meeting-item {
        padding: 1.25rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }
    
    .services-briefing-cta {
        margin-top: 3rem;
        padding: 2rem 1.5rem;
    }
    
    .briefing-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .briefing-text strong {
        font-size: 1.1rem;
    }
    
    .target-groups-cta {
        margin-top: 3rem;
        padding-top: 2rem;
    }
    
    .cta-text-box {
        margin-top: 1.5rem;
        padding: 1.25rem 1.5rem;
    }
    
    .cta-text-box p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .why-me-photo {
        margin-top: 2rem;
    }
    
    .moderator-action-photo {
        max-height: 400px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .reference-gallery-small {
        grid-template-columns: 1fr;
    }
    
    .reference-gallery-small img {
        height: 250px;
    }
    
    .reference-gallery {
        grid-template-columns: 1fr;
    }
    
    .reference-gallery-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* References Mobile Adjustments */
    .timeline::before {
        left: 20px;
    }
    
    .reference-card {
        padding: 1.5rem;
    }
    
    .reference-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .reference-header h3 {
        font-size: 1.3rem;
    }
    
    .timeline-year {
        font-size: 1rem;
        padding: 0.5rem 0.75rem;
        min-width: 60px;
    }
    
    .reference-details {
        padding: 1.5rem;
    }
    
    .reference-quote {
        padding: 1.5rem;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
}