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

body {
    font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background-color: #06161A;
    color: #B9BAB5;
    line-height: 1.6;

    background-image: url(hero.png);
    background-repeat: no-repeat;
    background-size: 1000px auto;
    background-position: calc(100% + 200px) -75px;
    position: relative;
}

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

/* Header */
.header {
    padding: 20px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #CBBF7A;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 100;
}

.menu-icon span {
    width: 25px;
    height: 3px;
    background-color: #FFF;
    transition: all 0.3s ease;
}

.gold {
    color: #CBBF7A;
}

/* Separator */
.separator-container {
    margin: 40px 50px;
}

.separator {
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 auto;
    max-width: 1300px;
}

/* Hero Section */
.hero {
    padding: 60px 0;
    position: relative;
}

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

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

.hero-title {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 64px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-title .white {
    color: #FFF;
}

.hero-description {
    font-size: 14px;
    line-height: 1.3;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 40px;
    color: #B9BAB5;
}

.hero-actions {
    display: flex;
    gap: 30px;
    align-items: center;
}

.btn-primary {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    background-color: #CBBF7A;
    color: #06161A;
    border: none;
    padding: 16px 40px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    cursor: pointer;
    transition: opacity 0.3s;
    border-radius: 4px;
    text-decoration: none;
}

.btn-primary:hover {
    opacity: 0.9;
}

.link {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    color: #FFF;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 125%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.link:hover {
    color: #CBBF7A;
}

/* Stats Section */
.stats {
    padding: 40px 0;
}

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

.stat-item {
    border-left: 3px solid #CBBF7A;
    padding-left: 30px;
}

.stat-number {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 56px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    color: #CBBF7A;
    margin-bottom: 10px;
}

.stat-text {
    font-size: 16px;
    color: #B9BAB5;
}

/* Logos Section */
.logos {
    padding: 60px 0;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.logo-item {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 24px;
    color: #B9BAB5;
    font-weight: 600;
}

/* Exhibition Image */
.exhibition-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

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

/* Two Column Section */
.two-column {
    padding: 80px 0;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 120px;
}

.column-left {
    margin: auto;
}

.column-left h2 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 36px;
    line-height: 130%;
    color: #FFF;
}

.column-right p {
    margin-bottom: 25px;
    font-size: 16px;
    line-height: 1.3;
}

/* Four Cards Section */
.four-cards {
    padding: 60px 0;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.card {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.card-number {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 36px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    color: #CBBF7A;
    border: 2px solid #CBBF7A;
    border-radius: 4px;
    padding: 20px;
    display: block;
    margin-bottom: 10px;
}

.card-content {
    background-color: #EFEFEF;
    padding: 25px;
    flex: 1;
    border-radius: 4px;
}

.card-content h3 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 20px;
    color: #06161A;
    margin-bottom: 15px;
}

.card-content p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #3C3C3C;
}

/* Presentation Section */
.presentation {
    padding: 60px 0;
}

.presentation-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 100px;
}

.presentation-main h2 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 36px;
    line-height: 130%;
    color: #FFF;
    margin-bottom: 25px;
}

.presentation-main p {
    margin-bottom: 40px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
}

.presentation-main img {
    width: 100%;
    height: auto;
    display: block;
}

.presentation-sidebar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-card {
    background-color: rgba(239, 239, 239, 0.10);
    padding: 25px;
    border-radius: 4px;
}

.sidebar-number {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 800;
    line-height: 100%;
    color: #CBBF7A;
    margin-bottom: 10px;
}

.sidebar-card h4 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 18px;
    color: #FFF;
    margin-bottom: 8px;
}

.sidebar-card p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #B9BAB5;
}

/* Final Section */
.final-section {
    padding-bottom: 60px;
    background-color: #FFF;
}

.final-grid {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 0;
    align-items: center;
    position: relative;
}

.final-left {
    z-index: 2;
    padding-right: 10px;
    margin: 60px 0;
}

.final-left h2 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 36px;
    line-height: 130%;
    color: #06161A;
    margin-bottom: 40px;
    max-width: 80%;
}

.final-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.final-card {
    padding: 30px;
    border-radius: 6px;
    border: 1px solid rgba(203, 191, 122, 0.50);
    background-color: #FFF;
}

.card-super-title {
    font-size: 11px;
    letter-spacing: 2px;
    color: #CBBF7A;
    margin-bottom: 12px;
}

.final-card h3 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 24px;
    color: #06161A;
    margin-bottom: 15px;
}

.final-card p {
    font-size: 15px;
    color: #06161A;
}

.final-right {
    position: relative;
    z-index: 1;
    margin-top: 60px;
    margin-left: -80px;
}

.final-right img {
    width: 100%;
    height: auto;
    display: block;
}

/* Footer */
.footer {
    background-color: #06161A;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 35%;
    height: 80%;
    background-image: url('footer-logo.svg');
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 2;
}

.footer h2 {
    font-family: 'Zalando Sans SemiExpanded', sans-serif;
    font-size: 36px;
    line-height: 130%;
    color: #FFF;
    margin-bottom: 30px;
}

.footer-actions {
    display: grid;
    grid-template-columns: 50% 50%;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.footer .btn-primary {
    margin-bottom: 0;
}

.footer-cta {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    color: #B9BAB5;
    margin-bottom: 0;
}

.footer-address {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    color: #B9BAB5;
}

.footer-contact {
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 130%;
    color: #CBBF7A;
    margin-bottom: 40px;
}


/* Responsive Design */
@media (max-width: 768px) {
    body {
        background-size: 500px auto;
        background-position: calc(100% + 100px) 40px;
    }

    .header {
        padding: 15px 0;
    }

    .header .container {
        flex-direction: row;
        gap: 0;
        justify-content: space-between;
    }

    .logo img {
        height: 30px;
    }

    .nav {
        gap: 20px;
    }

    .nav a {
        font-size: 14px;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

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

    .hero::before {
        width: 100%;
        background-position: center top;
        background-size: 80%;
        opacity: 0.3;
        top: -100px;
        right: -150px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .presentation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .final-left {
        padding-right: 0;
        margin: 60px 0 0 0;
    }

    .final-right {
        margin-top: 0;
        margin-left: 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .exhibition-image {
        height: 300px;
    }

}

@media (max-width: 480px) {
    .menu-icon {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #06161A;
        flex-direction: column;
        padding: 80px 30px 30px;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 99;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
    }

    .nav a {
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(203, 191, 122, 0.2);
    }

    .menu-toggle:checked ~ .nav {
        right: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked ~ .menu-icon span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    body {
        background-size: 340px auto;
        background-position: calc(100% + 80px) 25px;
    }

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

    .column-left h2,
    .final-left h2,
    .footer h2 {
        font-size: 28px;
        line-height: 130%;
    }

    .presentation-main h2 {
        font-size: 28px;
        line-height: 130%;
    }

    .footer-actions {
        grid-template-columns: 100%;
        gap: 15px;
    }

    .stat-number {
        font-size: 36px;
    }

    .card-number {
        font-size: 28px;
        padding: 15px;
    }
}
