/* ===================================
   CSS Reset & Base Styles
   =================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0e0e0e;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===================================
   CSS Variables
   =================================== */

:root {
    --color-primary: #E5B636;
    --color-dark: #0e0e0e;
    --color-dark-secondary: #2a2a2a;
    --color-light: #ffffff;
    --color-text: #cccccc;
    --color-border: #444444;

    --container-width: 1200px;
    --padding-section: 80px 20px;
    --padding-section-mobile: 60px 20px;

    --transition: all 0.3s ease;
}

/* ===================================
   Utility Classes
   =================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--color-light);
}

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

.btn {
    display: inline-block;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
    cursor: pointer;
}

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

.btn--primary:hover {
    background-color: #d4a527;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 182, 54, 0.4);
}

.btn--full {
    width: 100%;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   Header
   =================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
    background-color: rgba(14, 14, 14, 0.98);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.header__logo img {
    height: 70px;
    width: auto;
}

.header__nav {
    display: flex;
}

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

.nav__link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color-text);
    position: relative;
}

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

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

.nav__link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    display: block;
    width: 28px;
    height: 3px;
    background-color: var(--color-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   Hero Section
   =================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #161616 0%, #161616 70%, #bdaa66 100%);
    padding: var(--padding-section);
    padding-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, #0e0e0e);
    pointer-events: none;
    z-index: 1;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hero__text {
    flex: 1;
}

.hero__title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
}

.hero__title--accent {
    color: var(--color-primary);
}

.hero__subtitle {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.4;
}

.hero__image {
    flex: 1.5;
    max-width: 1000px;
    width: 100%;
}

.hero__image img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   About Section (Combined with Services)
   =================================== */

.about {
    padding: var(--padding-section);
    background-color: #0e0e0e;
    position: relative;
    overflow: hidden;
}

/* Decorative elements */
.about__decor {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.about__decor--upper {
    top: -30px;
    right: -70px;
    width: auto;
    transform: rotate(139deg);
}

.about__decor--upper img {
    width: 600px;
    height: auto;
}

.about__decor--middle {
    left: -75px;
    top: 20%;
    width: auto;
    transform: rotate(181deg);
}

.about__decor--middle img {
    width: 600px;
    height: auto;
}

.about .container {
    position: relative;
    z-index: 2;
}

.about__content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 50px;
}

.about__icon {
    flex-shrink: 0;
    max-width: 500px;
}

.about__icon img {
    width: 500px;
    height: auto;
    animation: pulse 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(229, 182, 54, 0.4));
}

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

.about__text {
    flex: 1;
    padding-top: 0;
}

.about__text .section__title {
    text-align: left;
    margin-bottom: 30px;
    margin-top: 0;
}

.about__description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.about__quote {
    font-size: 25px;
    font-style: italic;
    line-height: 1.7;
    color: var(--color-text);
    text-align: center;
    margin: 60px auto;
    max-width: 900px;
    padding: 0 20px;
    position: relative;
}

.about__subtitle {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: var(--color-light);
}

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

.service-card {
    background-color: var(--color-dark);
    border: 2px solid var(--color-primary);
    border-radius: 8px;
    padding: 40px 15px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(229, 182, 54, 0.3);
    background-color: rgba(229, 182, 54, 0.05);
}

.service-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-light);
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ===================================
   Legacy Card Styles (for other sections)
   =================================== */

.card {
    background-color: var(--color-dark);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 40px 30px;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-primary);
}

.card__title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-light);
}

.card__text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
}

/* ===================================
   Work Section
   =================================== */

.work {
    padding: 0;
    background-color: #0e0e0e;
    position: relative;
}

/* Work Header - Top part with text and globe */
.work__header {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
    padding: var(--padding-section);
    padding-bottom: 0;
    position: relative;
}

.work__text-block {
    flex: 1;
    max-width: 55%;
    padding-right: 40px;
}

.work__title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--color-light);
}

.work__description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.work__globe {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 700px;
    width: 60%;
}

.work__globe img {
    width: 100%;
    height: auto;
    display: block;
    mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%),
                linear-gradient(to left, transparent 0%, black 10%, black 100%);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 10%, black 100%),
                        linear-gradient(to left, transparent 0%, black 10%, black 100%);
    -webkit-mask-composite: source-in;
}

/* Work Candidates - Bottom part */
.work__candidates {
    margin-top: 60px;
    padding: 0 20px 80px;
}

.work__candidates-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-light);
    text-align: center;
}

.work__candidates-subtitle {
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 40px;
    text-align: center;
}

.work__cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.work__card {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: 25px;
    transition: var(--transition);
}

.work__card:hover {
    border-color: var(--color-primary);
    background-color: #fff5d6;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(229, 182, 54, 0.3);
}

.work__card-icon {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
}

.work__card-icon img {
    width: 100%;
    height: auto;
}

.work__card-text {
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
}

.work__footer-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    font-style: italic;
}

/* ===================================
   How We Create Section
   =================================== */

.how-create {
    padding: var(--padding-section);
    background-color: var(--color-dark-secondary);
}

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

.card--light {
    background-color: #f5f5f5;
    border-color: #ddd;
}

.card__icon {
    margin-bottom: 20px;
}

.card__icon img {
    width: 60px;
    height: auto;
}

.card__title--dark {
    color: var(--color-dark);
}

.card__text--dark {
    color: #555;
}

/* ===================================
   Why Work With Us Section
   =================================== */

.why-work {
    padding: var(--padding-section);
    background-color: #0e0e0e;
}

.why-work__content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.why-work__logo {
    flex-shrink: 0;
    max-width: 350px;
}

.why-work__logo img {
    width: 300px;
    height: auto;
    margin-bottom: 30px;
}

.why-work__text {
    flex: 1;
}

.why-work__list {
    margin-bottom: 40px;
}

.why-work__item {
    font-size: 18px;
    line-height: 2;
    color: var(--color-text);
    padding-left: 30px;
    position: relative;
}

.why-work__item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-size: 20px;
    font-weight: bold;
}

.why-work__note {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

/* ===================================
   Contact Section
   =================================== */

.contact {
    padding: var(--padding-section);
    background-color: #0e0e0e;
}

.contact__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact__subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-light);
}

.contact__text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.contact__form {
    background-color: var(--color-dark);
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.form__intro {
    text-align: center;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 20px;
}

.form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    color: var(--color-light);
    background-color: var(--color-dark-secondary);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition);
}

.form__input:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(229, 182, 54, 0.1);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: #888;
}

.form__message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
    display: none;
}

.form__message.success {
    display: block;
    background-color: #2d5c2d;
    color: #8fdf8f;
    border: 1px solid #4a8f4a;
}

.form__message.error {
    display: block;
    background-color: #5c2d2d;
    color: #df8f8f;
    border: 1px solid #8f4a4a;
}

/* ===================================
   Footer
   =================================== */

.footer {
    background-color: var(--color-dark);
    padding: 60px 20px 30px;
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
    align-items: start;
}

/* Left section - Logo and description */
.footer__about {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
}

.footer__logo img {
    width: 300px;
    height: auto;
}

.footer__description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-text);
}

.footer__description strong {
    color: var(--color-light);
    font-size: 16px;
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

/* Center section - Links */
.footer__links {
    display: flex;
    justify-content: center;
}

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

.footer__links-list li {
    margin-bottom: 12px;
}

.footer__link {
    font-size: 15px;
    color: var(--color-text);
    transition: var(--transition);
    display: inline-block;
}

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

/* Right section - Contacts */
.footer__contacts {
    display: flex;
    flex-direction: column;
}

.footer__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-light);
}

.footer__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 8px;
}

/* Bottom section */
.footer__bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-border);
}

.footer__copyright {
    font-size: 14px;
    color: var(--color-text);
}

/* ===================================
   Legal Page
   =================================== */

.legal-page {
    padding: var(--padding-section);
    padding-top: 140px;
    background-color: #0e0e0e;
    min-height: 100vh;
}

.legal-page__title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-light);
}

.legal-page__content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-page__intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 50px;
    text-align: center;
    padding: 0 20px;
}

.legal-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--color-border);
}

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

.legal-section__title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.legal-section__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 16px;
}

.legal-section__list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.legal-section__list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.legal-section__list li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--color-primary);
    font-size: 20px;
}

.legal-section__list li strong {
    color: var(--color-light);
    font-weight: 600;
}

.legal-section__contact {
    background-color: var(--color-dark-secondary);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    margin-top: 20px;
}

.legal-section__contact p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 8px;
}

.legal-section__contact p:last-child {
    margin-bottom: 0;
}

.legal-section__contact strong {
    color: var(--color-light);
    font-weight: 600;
}

.legal-page__back {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

/* ===================================
   Responsive Design - Tablet
   =================================== */

@media (max-width: 1023px) {
    .section__title {
        font-size: 32px;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    .hero__content {
        gap: 40px;
    }

    .about__services {
        grid-template-columns: 1fr;
    }

    .how-create__grid {
        grid-template-columns: 1fr;
    }

    .work__header {
        flex-direction: column;
        padding-bottom: 40px;
    }

    .work__text-block {
        padding-right: 0;
        max-width: 100%;
    }

    .work__globe {
        position: relative;
        max-width: 400px;
        width: 100%;
        margin: 0 auto;
        top: auto;
        right: auto;
    }

    .work__candidates {
        padding: 0 20px 60px;
    }

    .work__cards-grid {
        grid-template-columns: 1fr;
    }

    .why-work__content {
        flex-direction: column;
        gap: 40px;
    }

    .why-work__logo {
        max-width: 100%;
    }

    .why-work__logo img {
        width: 200px;
        margin: 0 auto 20px;
    }

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

    .contact__content {
        grid-template-columns: 1fr;
    }

    .footer__content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   Responsive Design - Mobile
   =================================== */

@media (max-width: 767px) {
    :root {
        --padding-section: var(--padding-section-mobile);
    }

    .section__title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    /* Header Mobile */
    .header__nav {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background-color: rgba(14, 14, 14, 0.98);
        padding: 30px 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .header__nav.active {
        transform: translateX(0);
    }

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

    .nav__link {
        font-size: 18px;
    }

    .burger {
        display: flex;
    }

    /* Hero Mobile */
    .hero {
        min-height: auto;
        padding-top: 100px;
    }

    .hero__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero__title {
        font-size: 42px;
    }

    .hero__subtitle {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .hero__image {
        max-width: 400px;
    }

    /* About Mobile */
    .about__content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .about__decor--upper {
        top: -20px;
        right: -40px;
        transform: rotate(139deg);
    }

    .about__decor--upper img {
        width: 280px;
    }

    .about__decor--middle {
        left: -60px;
        top: 25%;
        transform: rotate(181deg);
    }

    .about__decor--middle img {
        width: 280px;
    }

    .about__icon {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .about__icon img {
        width: 180px;
        margin: 0 auto;
    }

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

    .about__description {
        font-size: 16px;
    }

    .about__quote {
        font-size: 20px;
        margin: 40px auto;
    }

    .about__subtitle {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .service-card {
        padding: 30px 20px;
    }

    .service-card__title {
        font-size: 17px;
        min-height: auto;
    }

    .service-card__text {
        font-size: 14px;
    }

    /* Card Mobile */
    .card {
        padding: 30px 20px;
    }

    .card__title {
        font-size: 20px;
    }

    .card__text {
        font-size: 15px;
    }

    /* Work Mobile */
    .work__header {
        margin-bottom: 30px;
        padding: 60px 20px 0;
        position: relative;
    }

    .work__text-block {
        padding-right: 120px;
        max-width: 100%;
    }

    .work__title {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .work__description {
        font-size: 16px;
    }

    .work__globe {
        position: absolute;
        top: 60px;
        right: 0;
        max-width: 200px;
        width: 45%;
    }

    .work__candidates {
        margin-top: 40px;
        padding: 0 20px 60px;
    }

    .work__candidates-title {
        font-size: 24px;
    }

    .work__candidates-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .work__card {
        padding: 20px;
    }

    .work__card-text {
        font-size: 15px;
    }

    .work__footer-text {
        font-size: 16px;
    }

    /* Why Work Mobile */
    .why-work__logo img {
        width: 180px;
        margin: 0 auto 20px;
    }

    .why-work__item {
        font-size: 16px;
    }

    .why-work__note {
        font-size: 13px;
        text-align: center;
    }

    /* Contact Mobile */
    .contact__form {
        padding: 30px 20px;
    }

    .contact__text {
        font-size: 16px;
    }

    /* Footer Mobile */
    .footer {
        padding: 30px 20px 20px;
    }

    .footer__content {
        gap: 30px;
        margin-bottom: 25px;
        text-align: center;
    }

    .footer__about {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .footer__logo img {
        width: 120px;
    }

    .footer__description {
        font-size: 14px;
    }

    .footer__links {
        justify-content: center;
    }

    .footer__links-list li {
        margin-bottom: 8px;
    }

    .footer__link {
        font-size: 14px;
    }

    .footer__contacts {
        align-items: center;
    }

    .footer__title {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .footer__text {
        font-size: 14px;
    }

    .footer__bottom {
        padding-top: 20px;
    }

    .footer__copyright {
        font-size: 12px;
        line-height: 1.6;
    }

    .social__links {
        justify-content: center;
    }

    /* Legal Page Mobile */
    .legal-page {
        padding-top: 120px;
    }

    .legal-page__title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .legal-page__intro {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .legal-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

    .legal-section__title {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .legal-section__text {
        font-size: 15px;
    }

    .legal-section__list li {
        font-size: 15px;
        padding-left: 25px;
    }

    .legal-section__contact {
        padding: 20px;
    }

    .legal-section__contact p {
        font-size: 15px;
    }

    .legal-page__back {
        margin-top: 40px;
        padding-top: 30px;
    }
}
