@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Merriweather:wght@300;400&display=swap');

:root {
    /* Hero-inspired Primary Colors */
    --primary-purple: #3E31B2;
    --primary-orange: #F9A04A;
    --primary-pink: #F82E3F;
    
    /* Secondary Colors */
    --secondary-purple: #5443D4;
    --secondary-orange: #FFB366;
    --secondary-pink: #FF5566;
    
    /* Base Colors */
    --white: #ffffff;
    --black: #000000;
    
    /* Grays */
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 500;
}

/* Geometric pattern overlay */
.content-section::before,
.appointments-section::before,
.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
    pointer-events: none;
}

.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
    overflow: hidden;
    background-color: #F9A04A;
    padding: 4rem 4rem 0 4rem;
}

.hero-image-wrapper {
    flex: 0 0 45%;
    max-width: 600px;
    z-index: 1;
    align-self: flex-end;
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
}

.hero-image-shadow {
    display: none;
}

.hero-portrait {
    width: auto;
    height: auto;
    max-height: calc(100vh - 4rem);
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.3));
}

.hero-portrait-mobile {
    display: none;
}

/* Removed scan lines and vignette effects */

.hero-text-container {
    flex: 0 1 600px;
    text-align: left;
    z-index: 1;
    position: relative;
    max-width: 600px;
}

.hero-name {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    color: #3E31B2;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    text-shadow: 
        -4px 4px 0 #F82E3F;
    transform: skewY(-3deg);
    letter-spacing: -0.06em;
    font-style: italic;
}

/* Removed glowing text effects */

.hero-arrow {
    flex-shrink: 0;
    width: 120px;
    height: auto;
    margin-left: 1rem;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    color: #3E31B2;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.25rem);
    font-weight: 500;
    color: #3E31B2;
    line-height: 1.4;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
    max-width: 500px;
}

.hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.25vw, 1.1rem);
    font-weight: 400;
    color: #3E31B2;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 500px;
    opacity: 0.9;
}

.cta-button {
    background-color: #3E31B2;
    color: #FFFFFF;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background-color: #2E21A2;
}

.content-section {
    padding: 80px 0;
    position: relative;
    background: var(--white);
    overflow: hidden;
}

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

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--primary-purple);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-style: italic;
    transform: skewY(-3deg);
    text-shadow: -3px 3px 0 var(--primary-pink);
}

.content-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.content-block {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    box-shadow: -8px 8px 0 var(--primary-pink);
    position: relative;
    padding-left: 0;
    transform: skewY(-1deg);
    margin-bottom: 3rem;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
}

/* Removed colored number area */
.content-block::after {
    display: none;
}

/* Color progression for blocks */
.content-block:nth-child(1)::after { 
    background-color: var(--primary-purple); 
}
.content-block:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    box-shadow: -8px 8px 0 var(--primary-pink);
}
.content-block:nth-child(1) .content-header {
    background: transparent;
    padding-left: 2rem;
}
.content-block:nth-child(1) .content-header h3 {
    text-shadow: -3px 3px 0 rgba(0, 0, 0, 0.3);
}

.content-block:nth-child(2)::after { 
    background-color: var(--primary-pink);
}
.content-block:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
    box-shadow: -8px 8px 0 var(--primary-orange);
}
.content-block:nth-child(2) .content-header {
    background: transparent;
    padding-left: 2rem;
}
.content-block:nth-child(2) .content-header h3 {
    text-shadow: -3px 3px 0 var(--primary-purple);
}

.content-block:nth-child(3)::after { 
    background-color: var(--primary-orange); 
}
.content-block:nth-child(3) {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    box-shadow: -8px 8px 0 var(--primary-purple);
}
.content-block:nth-child(3) .content-header {
    background: transparent;
    padding-left: 2rem;
}
.content-block:nth-child(3) .content-header h3 {
    text-shadow: -3px 3px 0 var(--primary-purple);
}

.content-block:nth-child(4)::after { 
    background-color: var(--primary-purple);
}
.content-block:nth-child(4) {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    box-shadow: -8px 8px 0 var(--primary-pink);
}
.content-block:nth-child(4) .content-header {
    background: transparent;
    padding-left: 2rem;
}
.content-block:nth-child(4) .content-header h3 {
    text-shadow: -3px 3px 0 rgba(0, 0, 0, 0.3);
}

/* Removed step numbers */
.content-block::before {
    display: none;
}


/* Match toggle icon colors to block theme */
.content-block .toggle-icon { 
    color: var(--white);
    font-weight: 700;
    font-size: 1.5rem;
}

.content-block:hover {
    transform: skewY(-1deg) translateY(-4px) scale(1.02);
}

.content-block.has-active {
    transform: skewY(-1deg) translateY(-6px) scale(1.03);
}

/* Remove connecting dots */
.content-container::before {
    display: none;
}

/* Removed animation-specific styles */

.content-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    transform: skewY(1deg);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.content-header:hover {
    filter: brightness(1.1);
}

.content-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    margin-right: 1rem;
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-style: italic;
    transform: skewY(-1deg);
    display: inline-block;
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: 600;
    transition: transform 0.3s ease;
}

.content-header.active .toggle-icon {
    transform: rotate(180deg);
}

.content-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.2s ease;
}

.content-body-inner {
    padding: 2.5rem;
    background-color: transparent;
    transform: skewY(1deg);
}

.content-body.active {
    max-height: 3000px;
    opacity: 1;
}

/* Removed transform animation */

.content-body p {
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1.15rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.content-body p:last-child {
    margin-bottom: 0;
}

/* Inhalte Section - Candy Machine */
.inhalte-section {
    padding: 80px 0;
    position: relative;
    background: var(--white);
    overflow: visible;
}

.inhalte-section .section-title {
    color: var(--primary-purple);
    text-shadow: -4px 4px 0 var(--primary-orange);
    margin-bottom: 3rem;
}

.candy-machine {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

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

.candy-button {
    aspect-ratio: 1;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    box-shadow: -8px 8px 0 rgba(0, 0, 0, 0.2);
}

.candy-button:nth-child(1) {
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
}

.candy-button:nth-child(2) {
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
}

.candy-button:nth-child(3) {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
}

.candy-button:nth-child(4) {
    background: linear-gradient(135deg, var(--secondary-orange) 0%, var(--primary-orange) 100%);
}

.candy-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 2rem;
    position: relative;
}

.candy-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    text-align: center;
    line-height: 1.3;
    text-transform: uppercase;
    font-style: italic;
    text-shadow: -2px 2px 0 rgba(0, 0, 0, 0.3);
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.candy-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: -12px 12px 20px rgba(0, 0, 0, 0.3);
}

.candy-button:active {
    transform: translateY(-4px) scale(1.02);
}

/* Slide-out Panel */
.topic-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 600px;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    background: var(--white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
    transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1001;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* iOS momentum scrolling */
    overscroll-behavior: contain; /* Prevent scroll chaining */
}

.topic-panel.active {
    right: 0;
}


.panel-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: var(--primary-purple);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

/* Only apply hover effect on devices that support hover */
@media (hover: hover) {
    .panel-close:hover {
        transform: rotate(90deg) scale(1.1);
        background: var(--primary-pink);
    }
}

/* Touch feedback for mobile */
.panel-close:active {
    transform: scale(0.95);
    background: var(--primary-pink);
}

.panel-content {
    padding: 5rem 3rem 3rem;
}

.topic-content {
    display: none;
}

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

.topic-content h3 {
    font-size: 2.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    color: var(--primary-purple);
    line-height: 1.2;
    font-style: italic;
    text-shadow: -3px 3px 0 var(--primary-orange);
    transform: skewY(-2deg);
    word-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
}

.topic-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
}

.topic-highlight {
    font-size: 1.3rem;
    font-weight: 800;
    font-style: italic;
    color: var(--primary-purple);
    background: linear-gradient(135deg, var(--primary-orange) 0%, var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: block;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 3px solid var(--primary-orange);
}

/* Panel overlay - separate element */
.topic-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 999;
    cursor: pointer;
}

.topic-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero-section {
        padding: 3rem;
        min-height: 80vh;
        gap: 2rem;
    }
    
    .hero-image-wrapper {
        flex: 0 0 35%;
        max-width: 350px;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-shadow {
        display: none;
    }
    
    .hero-image-container {
        width: 100%;
        height: auto;
        transform: skewY(-2deg);
        box-shadow: -10px 10px 0 var(--primary-purple);
        background: var(--white);
        padding: 1rem;
        border-radius: 20px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-image-container::after {
        content: '';
        position: absolute;
        top: -5px;
        left: -5px;
        right: -5px;
        bottom: -5px;
        background: linear-gradient(135deg, var(--primary-pink), var(--primary-orange));
        border-radius: 20px;
        z-index: -1;
        transform: skewY(2deg);
    }
    
    .hero-portrait {
        max-height: 55vh;
        filter: none;
        width: 100%;
        object-fit: cover;
        object-position: center top;
        border-radius: 15px;
    }
    
    .hero-text-container {
        flex: 1;
        padding-left: 2rem;
    }
    
    .hero-name {
        font-size: 3rem;
    }
    
    .hero-arrow {
        width: 100px;
        display: none;
    }
    
    /* Letter section - remove skew on tablet */
    .letter-container {
        transform: none;
    }
    
    .letter-greeting {
        transform: none;
    }
    
    .highlight-cta {
        transform: none;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .content-container {
        gap: 2rem;
    }
    
    .content-block {
        box-shadow: -6px 6px 0 var(--primary-pink);
        margin-bottom: 2rem;
    }
    
    .content-block .content-header {
        padding: 1.5rem;
    }
    
    .content-body-inner {
        padding: 1.5rem;
    }
    
    .content-header h3 {
        font-size: 1.3rem;
        text-shadow: -2px 2px 0 rgba(0, 0, 0, 0.3);
    }
    
    /* Inhalte Section Mobile */
    .inhalte-section {
        padding: 60px 0;
    }
    
    .inhalte-section .section-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .candy-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .candy-button {
        box-shadow: -6px 6px 0 rgba(0, 0, 0, 0.2);
    }
    
    .candy-inner {
        padding: 1.5rem;
    }
    
    .candy-title {
        font-size: 1rem;
    }
    
    .candy-button:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: -8px 8px 15px rgba(0, 0, 0, 0.25);
    }
    
    /* Panel mobile adjustments */
    .topic-panel {
        max-width: 100%;
        height: 100vh;
        height: 100dvh; /* Use dynamic viewport height on mobile */
        /* Ensure proper scrolling on iOS */
        position: fixed;
        overflow-y: scroll; /* Force scroll instead of auto for iOS */
        -webkit-overflow-scrolling: touch;
    }
    
    .panel-content {
        padding: 4rem 2rem 2rem;
        /* Add padding bottom for better scroll experience */
        padding-bottom: 4rem;
        /* Ensure content is scrollable */
        min-height: 101%; /* Force scrollbar on iOS */
    }
    
    .topic-content h3 {
        font-size: 2rem;
        word-wrap: break-word;
        word-break: break-word;
        hyphens: auto;
    }
    
    .topic-content p {
        font-size: 1rem;
    }
    
    .topic-highlight {
        font-size: 1.1rem;
    }
    
    .hero-section {
        min-height: 100vh;
        flex-direction: column;
        padding: 2rem;
        justify-content: center;
    }
    
    .hero-image-wrapper {
        position: relative;
        display: flex;
        flex: 0 0 auto;
        max-width: 240px;
        width: 240px;
        height: 240px;
        margin-bottom: 1rem;
        align-self: center;
        animation: portraitSlideIn 0.6s ease-out;
        transform: rotate(-5deg);
        order: 1;
    }
    
    .hero-image-shadow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--primary-pink);
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        transform: translate(-8px, 8px);
        display: block;
    }
    
    .hero-image-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
        background: var(--primary-purple);
        z-index: 1;
    }
    
    @keyframes portraitSlideIn {
        from {
            opacity: 0;
            transform: rotate(-5deg) scale(0.8);
        }
        to {
            opacity: 1;
            transform: rotate(-5deg) scale(1);
        }
    }
    
    .hero-portrait {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        filter: none;
    }
    
    .hero-portrait-desktop {
        display: none;
    }
    
    .hero-portrait-mobile {
        display: block;
    }
    
    .hero-text-container {
        text-align: center;
        padding: 0;
        padding-right: 0;
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        order: 2;
    }
    
    .hero-name {
        font-size: 2.5rem;
        flex-direction: column;
        text-shadow: 
            -3px 3px 0 #F82E3F;
        transform: skewY(-3deg);
        letter-spacing: -0.04em;
        font-style: italic;
    }
    
    .hero-arrow {
        display: none;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-tagline {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin: 0 auto 2rem;
        line-height: 1.6;
    }
    
    .cta-button {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-shadow: -2px 2px 0 var(--primary-pink);
        margin-bottom: 3rem;
    }
}

/* Extra small mobile screens */
@media (max-width: 480px) {
    .hero-section {
        padding: 1.5rem;
    }
    
    .hero-image-wrapper {
        width: 180px;
        height: 180px;
        max-width: 180px;
    }
    
    .hero-image-shadow {
        transform: translate(-6px, 6px);
    }
    
    .hero-name {
        font-size: 2rem;
        text-shadow: -2px 2px 0 #F82E3F;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-tagline {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        font-size: 0.95rem;
        padding: 0.75rem 1.75rem;
    }
    
    /* Candy Machine extra small screens */
    .candy-inner {
        padding: 1rem;
    }
    
    .candy-title {
        font-size: 0.85rem;
        text-shadow: -1px 1px 0 rgba(0, 0, 0, 0.3);
    }
    
    .panel-close {
        width: 40px;
        height: 40px;
        top: 1rem;
        right: 1rem;
    }
}

/* Letter Section */
.letter-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--secondary-pink) 0%, var(--primary-pink) 100%);
    overflow: hidden;
}

.letter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
    pointer-events: none;
}

.letter-wrapper {
    position: relative;
    z-index: 1;
}

.letter-decoration {
    text-align: center;
    margin-bottom: 3rem;
}

.envelope-icon {
    color: var(--white);
    opacity: 0.9;
    filter: drop-shadow(-4px 4px 0 var(--primary-orange)) drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
    transform: skewY(-3deg);
    stroke: var(--white);
    stroke-width: 2;
}

@keyframes float {
    0%, 100% { transform: translateY(0) skewY(-3deg); }
    50% { transform: translateY(-10px) skewY(-3deg); }
}

.letter-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    transform: rotate(-1deg) translateZ(0); /* Hardware acceleration */
    box-shadow: 
        -12px 12px 0 var(--primary-purple),
        0 20px 40px rgba(0, 0, 0, 0.1);
    /* Removed hover effects for better performance */
}

.letter-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.letter-greeting {
    font-family: 'Inter', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-purple);
    line-height: 1.3;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    transform: skewY(-1deg);
}

.letter-body {
    font-family: 'Inter', sans-serif;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--gray-800);
    font-weight: 400;
}

.letter-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-word;
}

.letter-body p:first-child::first-letter {
    font-size: 3.5rem;
    float: left;
    line-height: 0.9;
    margin: -0.4rem 0.7rem 0 0;
    font-weight: 900;
    color: var(--primary-purple);
    text-shadow: -3px 3px 0 var(--primary-orange);
    font-style: italic;
}

.highlight-freedom {
    color: var(--primary-purple);
    font-weight: 700;
    background: linear-gradient(to bottom, transparent 60%, rgba(249, 160, 74, 0.3) 60%);
    padding: 0 0.2rem;
}

.highlight-urgent {
    color: var(--primary-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-style: italic;
}

/* Removed special styling for highlight-principle to match normal text */
/* .highlight-principle inherits from parent - no special styling needed */

.highlight-vision {
    color: var(--primary-orange);
    font-weight: 700;
    text-shadow: -1px 1px 0 rgba(248, 46, 63, 0.3);
}

.highlight-cta {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    display: inline-block;
    transform: skewY(-2deg) translateZ(0); /* Hardware acceleration */
    padding: 1.5rem 3rem;
    background: var(--primary-purple);
    border: 4px solid var(--primary-purple);
    border-radius: 15px;
    margin: 1rem 0;
    box-shadow: -8px 8px 0 var(--primary-orange);
    position: relative;
    cursor: pointer;
    /* Removed animation for better performance */
}

.letter-conclusion {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem 0;
    position: relative;
}

/* Removed animated background for better performance */

.letter-footer {
    margin-top: 4rem;
    text-align: right;
    padding-right: 2rem;
}

.letter-signature {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    color: var(--gray-700);
    font-style: italic;
    line-height: 1.6;
}

.signature-name {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-purple);
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    display: inline-block;
    transform: skewY(-3deg) rotate(-2deg) translateZ(0); /* Hardware acceleration */
    text-shadow: -4px 4px 0 var(--primary-orange);  /* Simplified shadow */
    margin-top: 0.5rem;
    position: relative;
}

.signature-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange) 0%, var(--primary-pink) 100%);
    transform: scaleX(0.8);
    /* Removed hover animation for better performance */
}

/* Video Section */
.video-section {
    padding: 100px 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FFAB00 100%);
    overflow: hidden;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.15;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.1) 35px, rgba(255, 255, 255, 0.1) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(255, 255, 255, 0.05) 35px, rgba(255, 255, 255, 0.05) 70px);
    pointer-events: none;
}

.video-section .section-title {
    color: var(--white);
    text-shadow: -4px 4px 0 var(--primary-purple);
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    z-index: 1;
}

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

.video-description {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    font-weight: 600;
    color: var(--white);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 3rem;
    padding: 0 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight-video {
    font-weight: 900;
    font-size: 1.2em;
    color: var(--white);
    background: var(--primary-purple);
    padding: 0.2rem 0.8rem;
    border-radius: 8px;
    box-shadow: -3px 3px 0 var(--primary-pink);
    display: inline-block;
    transform: skewY(-2deg);
    margin: 0 0.2rem;
}

.video-container {
    position: relative;
    max-width: 425px;
    margin: 0 auto;
    transform: rotate(-2deg);
}

.video-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-purple);
    border-radius: 20px;
    transform: translate(-10px, 10px);
    z-index: 0;
}

.video-player-wrapper {
    position: relative;
    background: var(--black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
    /* Maintain aspect ratio: 425x725 = 58.6% width to 100% height */
    padding-bottom: 170.59%; /* (725 / 425) * 100 */
    height: 0;
}

.campaign-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* Fullscreen video fix - display video with letterboxing instead of cropping */
.campaign-video:fullscreen {
    object-fit: contain;
    background-color: #000;
}

/* Webkit browsers (Safari, Chrome) */
.campaign-video:-webkit-full-screen {
    object-fit: contain;
    background-color: #000;
}

/* Firefox */
.campaign-video:-moz-full-screen {
    object-fit: contain;
    background-color: #000;
}

/* Edge/IE */
.campaign-video:-ms-fullscreen {
    object-fit: contain;
    background-color: #000;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary-purple);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: -4px 4px 0 var(--primary-pink), 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1) rotate(5deg);
    box-shadow: -6px 6px 0 var(--primary-pink), 0 12px 30px rgba(0, 0, 0, 0.4);
}

.video-play-button svg {
    width: 40px;
    height: 40px;
    color: var(--white);
    margin-left: 5px;
}

.campaign-video.playing + .video-play-button {
    display: none;
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 16px;
    }
    
    .video-section .section-title {
        text-shadow: -3px 3px 0 var(--primary-purple);
        margin-bottom: 2rem;
    }
    
    .video-description {
        font-size: 1rem;
        padding: 0;
        margin-bottom: 2rem;
    }
    
    .highlight-video {
        font-size: 1.05em;
        padding: 0.1rem 0.5rem;
        box-shadow: -2px 2px 0 var(--primary-pink);
    }
    
    .video-container {
        transform: rotate(-1deg);
        padding: 0;
        max-width: 100%;
        width: 100%;
    }
    
    .video-shadow {
        transform: translate(-5px, 5px);
        z-index: 0;
    }
    
    .video-play-button {
        width: 50px;
        height: 50px;
        box-shadow: -2px 2px 0 var(--primary-pink), 0 4px 10px rgba(0, 0, 0, 0.3);
    }
    
    .video-play-button svg {
        width: 25px;
        height: 25px;
        margin-left: 3px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 16px;
    }
    
    .video-description {
        font-size: 0.95rem;
        padding: 0;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .highlight-video {
        font-size: 1em;
        padding: 0.1rem 0.4rem;
    }
    
    .video-container {
        transform: none;
        max-width: 100%;
        width: 100%;
        padding: 0;
    }
    
    .video-shadow {
        transform: translate(-4px, 4px);
    }
}

@media (max-width: 360px) {
    .video-section {
        padding: 25px 16px;
    }
    
    .video-container {
        max-width: 100%;
        width: 100%;
    }
    
    .video-description {
        font-size: 0.9rem;
    }
    
    .video-shadow {
        transform: translate(-3px, 3px);
    }
    
    .video-play-button {
        width: 45px;
        height: 45px;
    }
    
    .video-play-button svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 768px) {
    .letter-section {
        padding: 60px 0;
    }
    
    .envelope-icon {
        width: 60px;
        height: 60px;
    }
    
    .letter-container {
        padding: 2.5rem 1.5rem;
        transform: none;
        box-shadow: 
            -8px 8px 0 var(--primary-purple),
            0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .letter-greeting {
        font-size: 1.5rem;
        text-shadow: -1px 1px 0 var(--primary-orange);
        transform: none;
    }
    
    .letter-body {
        font-size: 1rem;
    }
    
    .letter-body p {
        text-align: left;
    }
    
    .letter-body p:first-child::first-letter {
        font-size: 2.5rem;
        margin: -0.2rem 0.5rem 0 0;
        text-shadow: -2px 2px 0 var(--primary-orange);
    }
    
    .highlight-cta {
        font-size: 1.2rem;
        padding: 1.2rem 2rem;
        box-shadow: -6px 6px 0 var(--primary-orange);
        transform: none;
        /* Removed animation for better performance */
    }
    
    .signature-name {
        font-size: 2.2rem;
        text-shadow: -3px 3px 0 var(--primary-orange);  /* Simplified shadow */
    }
    
    .letter-footer {
        padding-right: 1rem;
    }
    
    /* Appointments section mobile styles */
    .appointments-section {
        padding: 60px 0;
    }
    
    .appointments-carousel-container {
        padding: 1rem 0;
    }
    
    .appointments-carousel {
        min-height: 420px;
    }
    
    .appointment-cards-wrapper {
        min-height: 400px;
        margin-bottom: 0.5rem;
    }
    
    .appointment-card {
        padding: 0 0.5rem;
    }
    
    .appointment-card-inner {
        padding: 1.5rem;
        box-shadow: -6px 6px 0 var(--primary-pink);
        overflow: visible;
        height: 480px;
        display: flex;
        flex-direction: column;
    }
    
    .appointment-title {
        font-size: 1.3rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.3;
    }
    
    .appointment-date {
        font-size: 0.9rem;
    }
    
    .appointment-location {
        font-size: 0.85rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        max-height: 2.4rem; /* 0.85rem * 1.4 line-height * 2 lines */
    }
    
    .appointment-excerpt {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.5;
    }
    
    .appointment-cta {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        box-shadow: -3px 3px 0 var(--primary-pink);
        margin-top: auto;
        align-self: flex-start;
    }
    
    /* Ensure navigation buttons stay visible */
    .carousel-navigation {
        position: relative;
        z-index: 20;
        margin-top: 0;
        gap: 1.5rem;
        padding-top: 1rem;
    }
    
    .carousel-nav-btn {
        width: 48px;
        height: 48px;
        box-shadow: -3px 3px 0 var(--primary-pink);
    }
}

/* Appointments Section */
.appointments-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--secondary-purple) 100%);
    overflow: hidden;
}

.appointments-section .section-title {
    color: var(--white);
    text-shadow: -3px 3px 0 rgba(0, 0, 0, 0.4);
}

.contact-section .section-title {
    color: var(--primary-orange);
    text-shadow: -3px 3px 0 var(--primary-purple);
}

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

.appointments-carousel {
    position: relative;
    min-height: 400px;
}

.carousel-loading {
    text-align: center;
    padding: 4rem 2rem;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(248, 46, 63, 0.2);
    border-top-color: var(--primary-pink);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(248, 46, 63, 0.4);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.appointment-cards-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.appointment-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0 1rem;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.appointment-card.active {
    opacity: 1;
    pointer-events: auto;
}

.appointment-card-inner {
    background: var(--white);
    border: 3px solid var(--primary-orange);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: -8px 8px 0 var(--primary-pink);
    transform: skewY(-1deg);
}

/* Removed gradient animation */

.appointment-card-inner:hover {
    transform: skewY(-1deg) translateY(-6px) scale(1.02);
    border-color: var(--primary-pink);
}

.appointment-date {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    transform: skewY(1deg);
}

.appointment-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--primary-purple);
    font-weight: 800;
    letter-spacing: -0.03em;
    transform: skewY(1deg);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.appointment-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.appointment-location svg {
    width: 20px;
    height: 20px;
    color: var(--primary-pink);
    transform: skewY(1deg);
}

.appointment-excerpt {
    color: var(--primary-purple);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    font-weight: 500;
    transform: skewY(1deg);
}

.appointment-cta {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--white);
    background-color: var(--primary-orange);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: -4px 4px 0 var(--primary-pink);
    transform: skewY(1deg);
    border: 3px solid transparent;
    position: relative;
    z-index: 10;
}

/* Removed redundant styles - now included in main .appointment-cta rule */

.appointment-cta:hover {
    box-shadow: none;
    cursor: pointer;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.carousel-nav-btn {
    background: var(--white);
    border: 3px solid var(--primary-orange);
    color: var(--primary-orange);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: -4px 4px 0 var(--primary-pink);
    -webkit-tap-highlight-color: transparent;
}

/* Active state for touch feedback */
.carousel-nav-btn:active:not(:disabled) {
    background-color: var(--primary-orange);
    color: var(--white);
    transform: scale(1.05);
    transition: all 0.1s ease;
}

/* Hover state only for devices with hover capability */
@media (hover: hover) {
    .carousel-nav-btn:hover:not(:disabled) {
        background-color: var(--primary-orange);
        color: var(--white);
        transform: scale(1.1) rotate(-5deg);
        box-shadow: -6px 6px 0 var(--primary-purple);
    }
}

.carousel-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}


.appointments-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, var(--primary-pink) 0%, var(--secondary-pink) 100%);
    overflow: hidden;
}

.contact-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.4rem;
    color: var(--white);
    line-height: 1.8;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.social-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border: 3px solid var(--white);
    border-radius: 20px;
    background: var(--primary-purple);
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: -6px 6px 0 var(--primary-orange);
    transform: rotate(-5deg);
}

/* Removed social link pseudo-elements */

.social-link svg {
    width: 40px;
    height: 40px;
    stroke-width: 2;
    transition: transform 0.3s ease;
    z-index: 1;
    transform: rotate(5deg);
}

.social-link:hover {
    transform: rotate(-5deg) translateY(-6px) scale(1.1);
    background-color: var(--primary-orange);
    box-shadow: -8px 8px 0 var(--primary-purple);
    border-color: var(--white);
}

.social-link:hover svg {
    transform: rotate(5deg) scale(1.2);
}

/* Specific hover effects for each social link to match shadow with background */
.social-link:nth-child(1):hover { 
    background-color: var(--primary-purple);
    box-shadow: -8px 8px 0 var(--primary-purple);
}

.social-link:nth-child(2):hover { 
    background-color: var(--primary-orange);
    box-shadow: -8px 8px 0 var(--primary-orange);
}

.social-link:nth-child(3):hover { 
    background-color: var(--primary-pink);
    box-shadow: -8px 8px 0 var(--primary-pink);
}

.social-link:nth-child(4):hover { 
    background-color: var(--primary-purple);
    box-shadow: -8px 8px 0 var(--primary-purple);
}

/* Alternate social link colors and rotations */
.social-link:nth-child(1) { 
    background-color: var(--primary-purple);
    transform: rotate(-5deg);
}
.social-link:nth-child(2) { 
    background-color: var(--primary-orange);
    box-shadow: -6px 6px 0 var(--primary-purple);
    transform: rotate(3deg);
}
.social-link:nth-child(3) { 
    background-color: var(--primary-pink);
    box-shadow: -6px 6px 0 var(--primary-orange);
    transform: rotate(-3deg);
}
.social-link:nth-child(4) { 
    background-color: var(--primary-purple);
    box-shadow: -6px 6px 0 var(--primary-pink);
    transform: rotate(5deg);
}

/* Mobile responsiveness for contact section */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-description {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        width: 70px;
        height: 70px;
        border-radius: 16px;
        box-shadow: -4px 4px 0 var(--primary-orange);
    }
    
    .social-link svg {
        width: 30px;
        height: 30px;
    }
}

/* Footer Section */
.footer-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #1a1060 100%);
    padding: 80px 0 60px;
    overflow: hidden;
}

.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        var(--primary-purple) 33%, 
        var(--primary-orange) 33%, 
        var(--primary-orange) 66%, 
        var(--primary-pink) 66%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Removed footer grid overlay */

.footer-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.footer-tagline {
    margin-bottom: 2rem;
}

.footer-tagline h3 {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -0.04em;
    font-style: italic;
    transform: skewY(-3deg);
    text-shadow: -4px 4px 0 var(--primary-pink);
    display: inline-block;
}

.footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.copyright {
    color: var(--white);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

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

.footer-link {
    color: var(--primary-orange);
    text-decoration: none;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    border: 2px solid transparent;
}

.footer-link:hover {
    color: var(--white);
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: -4px 4px 0 var(--primary-pink);
}

.link-separator {
    color: var(--primary-orange);
    opacity: 0.7;
    font-weight: 700;
    font-size: 1.2rem;
}

/* Removed footer scan lines effect */

/* Mobile responsiveness for footer */
@media (max-width: 768px) {
    .footer-section {
        padding: 40px 0 30px;
    }
    
    .footer-tagline h3 {
        font-size: 1.8rem;
        text-shadow: -3px 3px 0 var(--primary-pink);
    }
    
    .footer-info {
        gap: 1.5rem;
    }
    
    .copyright {
        font-size: 0.85rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .link-separator {
        display: none;
    }
}

