@import url('https://fonts.googleapis.com/css2?family=Kulim+Park:wght@700&display=swap');

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

:root {
    --pink: #ff99cb;
    --pink-light: #ffbbce;
    --dark-red: #961e36;
    --dark: #14122a;
    --dark-text: #151515;
    --bg: #f8f5f0;
    --white: #ffffff;
    --border: #e9e9e9;
    --border-dark: #a4a4a4;
    --font-main: -apple-system, 'SF Pro', 'SF Pro Text', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-display: -apple-system, 'SF Pro Display', 'SF Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-logo: 'Kulim Park', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

@keyframes slideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

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

.header {
    background-color: var(--bg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px max(100px, calc((100% - 1000px) / 2));
    position: sticky;
    top: 0;
    z-index: 100;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.header:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    transition: transform 0.4s ease;
}

.logo:hover .logo-icon {
    transform: rotate(10deg);
}

.nav a {
    position: relative;
    transition: color 0.3s ease;
}

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

.nav a:hover {
    color: var(--dark-red);
}

.nav a:hover::after {
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-logo);
    font-weight: 700;
    font-size: 26px;
    line-height: 19px;
    color: var(--dark-text);
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 18px;
    line-height: 19px;
    color: var(--dark-text);
    white-space: nowrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pink);
    border-radius: 79px;
    padding: 10px 25px;
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 18px;
    line-height: 19px;
    color: var(--white);
    letter-spacing: 0.18px;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
    background-color: var(--dark-red);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 30, 54, 0.25);
}

.btn:active {
    transform: translateY(0);
}

.btn-lg {
    padding: 14px 60px;
}

.btn-md {
    padding: 14px 30px;
}

.hamburger {
    display: none;
    width: 25px;
    height: 14px;
}

.hamburger img {
    width: 100%;
    height: 100%;
}

.hero {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 50px max(60px, calc((100% - 1080px) / 2));
    width: 100%;
    height: 676px;
    animation: fadeIn 0.8s ease;
}

.hero-slogans {
    width: 100%;
    position: relative;
    height: 308px;
}

.hero-slogans-top {
    display: flex;
    gap: 18px;
    align-items: center;
    position: absolute;
    top: 0;
    left: -1px;
    width: 1081px;
}

.slogan {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 60px;
    color: var(--white);
    white-space: nowrap;
}

.slogan-1 {
    background-color: var(--pink);
    border-radius: 38px 38px 0 38px;
    flex-shrink: 0;
}

.slogan-2 {
    background-color: var(--pink-light);
    color: var(--dark);
    border-radius: 38px 38px 38px 0;
    padding: 20px 70px;
    position: absolute;
    top: 128px;
    left: 496px;
}

.slogan-3 {
    background-color: var(--dark-red);
    border-radius: 38px 38px 0 38px;
    padding: 20px 70px;
    position: absolute;
    top: 226px;
    left: 0;
}

.hero-description {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 22.222px;
    color: var(--dark);
    flex: 1;
    min-width: 1px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.hero-image {
    width: 240px;
    height: 197px;
    border-radius: 25px;
    object-fit: cover;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-image:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.slogan, .slogan-mobile {
    transition: transform 0.4s ease;
}

.slogan:hover, .slogan-mobile:hover {
    transform: scale(1.03);
}

.hero-text {
    flex: 1;
    min-width: 1px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    color: var(--dark);
}

.hero-text p + p {
    margin-top: 19px;
}

.section {
    background-color: var(--bg);
    width: 100%;
    overflow: hidden;
}

.section-place {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(100px, calc((100% - 1000px) / 2));
}

.section-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

.place-image {
    width: 600px;
    height: 330px;
    border-radius: 16px;
    object-fit: cover;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.place-image:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.cards-row {
    display: flex;
    gap: 20px;
    width: 100%;
}

.card-stat {
    background: var(--white);
    border: 0.794px solid var(--border);
    border-radius: 19px;
    padding: 48px 30px;
    overflow: hidden;
    width: 498px;
    flex-shrink: 0;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.card-stat:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--pink);
}

.card-stat:hover .card-stat-number {
    animation: pulse 0.6s ease;
}

.card-stat-number {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 80px;
    color: var(--dark-red);
    line-height: normal;
}

.card-stat-subtitle {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 44px;
    color: var(--dark);
    line-height: normal;
    margin-top: 13px;
}

.card-stat-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--dark);
    margin-top: 13px;
    max-width: 435px;
}

.card-text {
    background: var(--white);
    border: 0.794px solid var(--border);
    border-radius: 19px;
    padding: 48px 30px;
    overflow: hidden;
    flex: 1;
    min-width: 1px;
    display: flex;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.card-text:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--pink);
}

.card-text p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--dark);
}

.section-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 80px max(100px, calc((100% - 1000px) / 2));
}

.step {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    height: 409px;
}

.step-content {
    flex: 1;
    min-width: 1px;
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.step-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 30px;
    line-height: normal;
    color: var(--dark);
}

.step-desc {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--dark);
}

.step-illustration {
    width: 411px;
    height: 409px;
    border-radius: 16px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.step-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.step-illustration:hover img {
    transform: scale(1.06);
}

.step-illustration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 125px;
    background: linear-gradient(to bottom, rgba(248, 245, 240, 0), #f8f5f0);
    mix-blend-mode: lighten;
}

.section-styles {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(100px, calc((100% - 1000px) / 2));
}

.styles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative;
}

.styles-floating-image {
    position: absolute;
    top: 18px;
    left: 288px;
    transform: rotate(19.21deg);
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.styles-floating-image img {
    width: 200px;
    height: 110px;
    border-radius: 16px;
    object-fit: cover;
}

.style-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1.587px solid var(--border-dark);
    width: 100%;
    cursor: pointer;
    transition: padding-left 0.3s ease;
}

.style-item:hover .style-name {
    color: var(--dark-red);
}

.style-item:hover .style-number {
    background-color: var(--dark-red);
    color: var(--white);
}

.style-item.indent {
    padding-left: 32px;
}

.style-item-left {
    display: flex;
    align-items: center;
    gap: 19px;
}

.style-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 42px;
    border: 1px solid var(--dark-red);
    border-radius: 79px;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 19px;
    color: var(--dark-red);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.style-name {
    transition: color 0.3s ease;
}

.style-name {
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 22px;
    color: var(--dark);
    white-space: nowrap;
}

.style-name.active {
    color: var(--dark-red);
}

.style-item-right {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 476px;
}

.style-item-desc {
    flex: 1;
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 19px;
    color: var(--dark);
}

.toggle-icon {
    display: flex;
    flex-direction: column;
    gap: 1px;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.toggle-icon img {
    width: 26px;
    height: 13px;
}

.section-faq {
    background-color: var(--pink);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(100px, calc((100% - 1000px) / 2));
    overflow: hidden;
}

.section-faq .section-title {
    color: var(--dark);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    overflow: hidden;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.4s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.faq-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.faq-item-title {
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 22px;
    line-height: 1.2;
    color: var(--dark);
    flex: 1;
    transition: color 0.3s ease;
}

.faq-arrow {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    transform: rotate(90deg);
    transition: transform 0.4s ease;
}

.faq-item.active {
    background-color: var(--dark-red);
}

.faq-item.active .faq-item-title {
    color: var(--white);
}

.faq-item.active .faq-arrow {
    transform: rotate(45deg);
}

.faq-item-answer {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.faq-item.active .faq-item-answer {
    max-height: 300px;
    opacity: 1;
    margin-top: 13px;
}

.footer-wrapper {
    background-color: var(--bg);
    width: 100%;
    position: relative;
    height: 693px;
    overflow: hidden;
    padding-top: 40px;
}

.footer-bg {
    position: absolute;
    left: 0;
    top: 34px;
    width: 100%;
    height: 659px;
    object-fit: cover;
}

.footer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-socials a {
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-4px) scale(1.1);
}

.footer-nav a,
.footer-links-mobile a {
    transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-links-mobile a:hover {
    color: var(--dark-red);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.footer-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.footer-nav a {
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 18px;
    line-height: 19px;
    color: var(--dark-text);
    white-space: nowrap;
}

.footer-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
}

.footer-socials a {
    display: block;
    width: 57px;
    height: 56px;
    overflow: hidden;
}

.footer-socials a img {
    width: 100%;
    height: 100%;
}

.footer-copyright {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: var(--dark-text);
}

@media (max-width: 768px) {
    .header {
        padding: 13px 20px;
    }

    .nav {
        display: none;
    }

    .header .btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 40px 20px;
        height: auto;
    }

    .hero-slogans {
        display: none;
    }

    .hero-mobile-slogans {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .slogan-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        font-family: var(--font-display);
        font-weight: 700;
        font-size: 40px;
        color: var(--white);
        white-space: nowrap;
        width: 100%;
    }

    .slogan-mobile-1 {
        background-color: var(--pink);
        border-radius: 38px 38px 0 38px;
    }

    .slogan-mobile-3 {
        background-color: var(--dark-red);
        border-radius: 38px 38px 0 38px;
        padding: 20px 70px;
    }

    .slogan-mobile-2 {
        background-color: var(--pink-light);
        color: var(--dark);
        border-radius: 38px 38px 38px 0;
        padding: 20px 70px;
    }

    .hero-description {
        width: 100%;
    }

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

    .hero-image {
        width: 100%;
        height: 197px;
    }

    .hero-text {
        width: 100%;
    }

    .section-place {
        padding: 40px 20px;
        gap: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .place-image {
        width: 100%;
        height: 215px;
    }

    .cards-row {
        flex-direction: column;
    }

    .card-stat {
        width: 100%;
        padding: 10px;
    }

    .card-stat-number {
        font-size: 40px;
    }

    .card-stat-subtitle {
        font-size: 30px;
    }

    .card-stat-desc {
        max-width: 100%;
    }

    .card-text {
        width: 100%;
        padding: 10px;
    }

    .section-steps {
        padding: 40px 20px;
    }

    .step {
        flex-direction: column;
        height: auto;
        gap: 20px;
    }

    .step:nth-child(even) {
        flex-direction: column;
    }

    .step-illustration {
        width: 100%;
        height: 388px;
        order: -1;
    }

    .step-content {
        width: 100%;
    }

    .section-styles {
        padding: 40px 20px;
        gap: 20px;
    }

    .styles-floating-image {
        position: static;
        transform: none;
    }

    .styles-floating-image img {
        width: 100%;
        height: 215px;
        border-radius: 16px;
    }

    .style-item {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .style-item.indent {
        padding-left: 0;
    }

    .style-item-right {
        width: 100%;
    }

    .section-faq {
        padding: 40px 20px;
        gap: 20px;
    }

    .section-faq .section-title {
        font-size: 32px;
    }

    .faq-list {
        width: 100%;
    }

    .footer-wrapper {
        height: 693px;
        padding-top: 40px;
    }

    .footer-bg {
        top: auto;
        bottom: 0;
        height: 237px;
    }

    .footer {
        gap: 20px;
        padding: 0 20px;
    }

    .footer-top {
        justify-content: center;
    }

    .footer-nav {
        display: none;
    }

    .footer-links-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .footer-links-mobile a {
        font-family: var(--font-main);
        font-weight: 510;
        font-size: 18px;
        line-height: 19px;
        color: var(--dark-text);
    }

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

    .footer-buttons .btn-md {
        width: 100%;
    }
}

.catalog-section {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(60px, calc((100% - 1080px) / 2));
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.catalog-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 80px;
    line-height: 1.2;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

.catalog-grid {
    display: flex;
    gap: 20px;
    width: 100%;
}

.catalog-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.catalog-card {
    display: block;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.catalog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.catalog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.catalog-card:hover img {
    transform: scale(1.06);
}

.catalog-card-small {
    aspect-ratio: 320 / 280;
    width: 100%;
}

.catalog-card-tall {
    flex: 1;
    min-width: 0;
    height: 466px;
    align-self: stretch;
}

.catalog-grid-mobile {
    display: none;
}

@media (max-width: 768px) {
    .catalog-section {
        padding: 40px 20px;
        gap: 20px;
    }

    .catalog-title {
        font-size: 32px;
    }

    .catalog-grid {
        display: none;
    }

    .catalog-grid-mobile {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .catalog-row {
        display: flex;
        gap: 20px;
    }

    .catalog-row .catalog-card {
        flex: 1;
        min-width: 0;
        aspect-ratio: 320 / 280;
    }

    .catalog-card-full {
        width: 100%;
        height: 390px;
        aspect-ratio: auto;
    }
}

.game-section {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(60px, calc((100% - 1080px) / 2));
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.game-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

.game-cards {
    display: flex;
    gap: 25px;
    align-items: center;
    width: 100%;
}

.game-card-left {
    flex: 1;
    min-width: 0;
    background-color: var(--dark-red);
    border-radius: 13px;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-card-left:hover,
.game-card-right:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.15);
}

.game-card-right {
    flex: 1;
    min-width: 0;
    background-color: #ff68ae;
    border-radius: 13px;
    padding: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.game-card-left p,
.game-card-right p {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    color: var(--white);
}

.game-image {
    flex: 1;
    min-width: 0;
    aspect-ratio: 320 / 280;
    border-radius: 20px;
    overflow: hidden;
}

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

.game-image:hover img {
    transform: scale(1.06);
}

.btn-play {
    padding: 25px 60px;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: 0.4px;
}

@media (max-width: 768px) {
    .game-section {
        padding: 40px 20px;
        gap: 20px;
    }

    .game-title {
        font-size: 32px;
    }

    .game-cards {
        flex-direction: column;
        gap: 20px;
    }

    .game-card-left,
    .game-card-right,
    .game-image {
        width: 100%;
    }
}

.policy-section {
    background-color: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 50px max(60px, calc((100% - 1080px) / 2));
    overflow: hidden;
    animation: fadeIn 0.8s ease;
}

.policy-title {
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 60px;
    line-height: 1.2;
    color: var(--dark);
    text-align: center;
    width: 100%;
}

.policy-content {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.2;
    color: var(--dark);
    width: 100%;
}

.policy-content p {
    margin-bottom: 20px;
}

.policy-content ul {
    list-style: disc;
    margin-bottom: 20px;
    padding-left: 27px;
}

.policy-content ul li {
    margin-bottom: 0;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .policy-section {
        padding: 40px 20px;
        gap: 20px;
    }

    .policy-title {
        font-size: 32px;
    }
}

@media (min-width: 769px) {
    .hero-mobile-slogans {
        display: none;
    }

    .footer-links-mobile {
        display: none;
    }
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%) translateY(120%);
    width: calc(100% - 40px);
    max-width: 880px;
    background-color: var(--dark-red);
    border-radius: 24px;
    padding: 36px 40px;
    z-index: 1000;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease;
    pointer-events: none;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(120%);
    opacity: 0;
    pointer-events: none;
}

.cookie-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: var(--white);
    margin-bottom: 18px;
}

.cookie-text {
    font-family: var(--font-main);
    font-weight: 400;
    font-size: 18px;
    line-height: 1.4;
    color: var(--white);
    margin-bottom: 22px;
    max-width: 720px;
}

.cookie-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--pink);
    border-radius: 79px;
    padding: 14px 36px;
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 20px;
    line-height: 1;
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cookie-btn:hover {
    background-color: var(--pink-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(255, 153, 203, 0.3);
}

.cookie-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 16px;
        padding: 24px;
        border-radius: 20px;
    }

    .cookie-title {
        font-size: 36px;
        margin-bottom: 14px;
    }

    .cookie-text {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .cookie-btn {
        padding: 12px 26px;
        font-size: 16px;
    }
}

.hamburger {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.hamburger:hover {
    opacity: 0.7;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg);
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    font-family: var(--font-main);
    font-weight: 510;
    font-size: 28px;
    color: var(--dark-text);
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 28px;
    color: var(--dark-text);
    background: none;
    border: none;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}
