/* Base Styles */
:root {
    --color-primary: #1F2E3C; /* глубокий графит */
    --color-accent: #FFD166; /* солнечный янтарь */
    --color-secondary: #0E1B28; /* тёмный индиго */
    --color-bright: #EF476F; /* неоново-розовый */
    --color-text: #FFFFFF;
    --color-text-secondary: #BFC9D9;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    --border-radius: 6px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
    font-size: 16px;
}

section[id] {
    scroll-margin-top: 40px;
}
option {
    background-color: #2a3845;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-primary);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-bright), var(--color-accent));
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--color-text-secondary);
}

.text-center {
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-accent);
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn--accent {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.btn--accent:hover {
    background-color: var(--color-bright);
    border-color: var(--color-bright);
    color: var(--color-text);
}

.btn--bright {
    background-color: var(--color-bright);
    border-color: var(--color-bright);
    color: var(--color-text);
}

.btn--bright:hover {
    background: linear-gradient(45deg, var(--color-bright), var(--color-accent));
    border-color: var(--color-accent);
}

/* Sections */
section {
    padding: 5rem 0;
}

.section--dark {
    background-color: var(--color-secondary);
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(14, 27, 40, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: block;
    width: 150px;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
}

.nav-toggle-label span {
    display: block;
    width: 30px;
    height: 3px;
    margin: 6px 0;
    background-color: var(--color-text);
    border-radius: 3px;
    transition: var(--transition);
}

.nav__list {
    display: flex;
    gap: 2rem;
}

.nav__link {
    position: relative;
    font-weight: 500;
    padding-bottom: 4px;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-bright), var(--color-accent));
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--color-accent);
}

.nav__link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    margin-top: 0;
    padding: 0 15px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(14, 27, 40, 0.85), rgba(14, 27, 40, 0.7));
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__title {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
    line-height: 1.1;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.hero__description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease-out 0.2s forwards;
    opacity: 0;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.hero__btn {
    animation: fadeInUp 1s ease-out 0.4s forwards;
    opacity: 0;
    padding: 14px 32px;
    font-size: 1rem;
    letter-spacing: 1.2px;
}

/* About Section */
.about__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about__text {
    font-size: 1.1rem;
}

.about__image {
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.about__image img {
    transition: var(--transition);
}

.about__image:hover img {
    transform: scale(1.05);
}

/* Values Section */
.values {
    background-color: var(--color-secondary);
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background-color: var(--color-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    fill: var(--color-accent);
}

.value-card__title {
    margin-bottom: 1rem;
}

/* Services Section */
.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--color-secondary);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-card__icon {
    animation: pulse 1s infinite;
}

.service-card__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    fill: var(--color-accent);
}

.service-card__title {
    margin-bottom: 1rem;
    color: var(--color-accent);
}

.service-card ul {
    margin-top: auto;
    list-style: disc;
    padding-left: 1.5rem;
    margin-top: 1rem;
}

.service-card ul li {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

/* Why Choose Us Section */
.why-us {
    background-color: var(--color-secondary);
}

.why-us__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.why-card {
    background-color: var(--color-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.why-card__number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.why-card__title {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Testimonials Section */
.testimonials__slider {
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 6rem;
    color: var(--color-accent);
    opacity: 0.2;
    line-height: 1;
}

.testimonial__text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.testimonial__author {
    font-weight: 600;
    color: var(--color-accent);
}

.testimonial__role {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq__grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid rgba(191, 201, 217, 0.2);
    border-radius: var(--border-radius);
    overflow: hidden;
    position: relative;
}

.faq-toggle {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.faq-question {
    background-color: var(--color-secondary);
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    transition: var(--transition);
}

.faq-toggle:checked + .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--color-primary);
}

.faq-toggle:checked ~ .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Contact Form Section */
.contact {
    background-color: var(--color-secondary);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.form {
    background-color: var(--color-primary);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.form__group {
    margin-bottom: 1.5rem;
}

.form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form__input,
.form__select {
    width: 100%;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    color: var(--color-text);
    font-family: 'Montserrat', sans-serif;
}

.form__input:focus,
.form__select:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23FFD166' width='18px' height='18px'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.form__checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-bottom: 1rem;
}

.form__checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border: 1px solid var(--color-accent);
    border-radius: 3px;
    margin-right: 10px;
    position: relative;
    cursor: pointer;
}

.form__checkbox:checked::before {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 1px;
}

.form__btn {
    width: 100%;
    margin-top: 1rem;
}

.contact__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact__info-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact__info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 1rem;
}

.contact__info-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-accent);
}

.contact__info-text h4 {
    margin-bottom: 0.5rem;
}

.contact__map {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 2rem;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--color-secondary);
    padding: 5rem 0 1rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer__logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer__title {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.footer__text {
    opacity: 0.8;
}

.footer__contact-list,
.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer__contact-item svg {
    flex-shrink: 0;
}

.footer__link:hover {
    color: var(--color-accent);
}

.footer__bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.footer__social-link:hover {
    background-color: var(--color-accent);
    transform: translateY(-3px);
}

.footer__social-link:hover svg path {
    fill: var(--color-secondary);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--color-secondary);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: bottom 0.5s ease;
}

.cookie-popup--active {
    bottom: 0;
}

.cookie-popup__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-popup__title {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-popup__text {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.cookie-popup__link {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-popup__link:hover {
    color: var(--color-bright);
}

/* Policy Pages */
.policy {
    padding: 8rem 0 5rem;
}

.policy__content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    padding: 3rem;
    border-radius: var(--border-radius);
}

.policy__title {
    margin-bottom: 2rem;
    text-align: center;
}

.policy__section {
    margin-bottom: 2.5rem;
}

.policy__section-title {
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.policy__list {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.policy__list li {
    margin-bottom: 0.5rem;
    color: var(--color-text-secondary);
}

/* Thank you page */
.thanks {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thanks__icon {
    font-size: 5rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.thanks__title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks__text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
}

/* Form error page */
.form-error {
    padding: 8rem 0;
    text-align: center;
}

.alert {
    padding: 1rem;
    border-radius: var(--border-radius);
    margin-bottom: 2rem;
}

.alert--error {
    background-color: rgba(239, 71, 111, 0.2);
    border: 1px solid var(--color-bright);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Enhanced responsive styles for hero section */
@media screen and (min-width: 1921px) {
    
    
    .hero__title {
        font-size: 5rem;
    }
    
    .hero__description {
        font-size: 1.5rem;
        max-width: 80%;
    }
}

@media screen and (max-width: 1200px) {
    .hero__title {
        font-size: 3.5rem;
    }
    
    .hero__content {
        max-width: 700px;
    }
}

@media screen and (max-width: 992px) {
    .hero {
        min-height: 650px;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__content {
        padding: 1.5rem;
        max-width: 600px;
    }
    
    .hero__description {
        font-size: 1.15rem;
        max-width: 95%;
    }
}

@media screen and (max-width: 768px) {
    .hero {
        min-height: 550px;
        padding: 0 10px;
        align-items: center;
        text-align: center;
    }
    
    .hero__content {
        text-align: center;
        padding: 1rem;
    }
    
    .hero__title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__btn {
        padding: 12px 28px;
    }
}

@media screen and (max-width: 576px) {
    .hero {
        min-height: 500px;
        background-position: 65% center;
    }
    
    .hero__content {
        padding: 1rem 0.5rem;
    }
    
    .hero__title {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
    }
    
    .hero__description {
        font-size: 1rem;
        margin-bottom: 1.8rem;
        line-height: 1.5;
    }
    
    .hero__btn {
        padding: 10px 24px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 375px) {
    .hero {
        min-height: 450px;
    }
    
    .hero__title {
        font-size: 1.9rem;
    }
    
    .hero__description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero__btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}

/* Responsive Design - Enhanced Media Queries */

/* Large Desktop */
@media screen and (min-width: 1921px) {
    html {
        font-size: 18px;
    }
    
    .container {
        max-width: 1400px;
    }
    
    .hero__title {
        font-size: 4.5rem;
    }
    
    .hero__description {
        font-size: 1.5rem;
    }
}

/* Desktop */
@media screen and (max-width: 1440px) {
    html {
        font-size: 16px;
    }
    
    h1, .hero__title {
        font-size: 3.5rem;
    }
    
    .container {
        max-width: 1140px;
    }
}

/* Smaller Desktop and Laptops */
@media screen and (max-width: 1200px) {
    html {
        font-size: 15px;
    }
    
    h1, .hero__title {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .container {
        max-width: 960px;
    }
    
    .nav__list {
        gap: 1.5rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .about__content {
        gap: 3rem;
    }
}

/* Tablets */
@media screen and (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    h1, .hero__title {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .container {
        max-width: 720px;
    }
    
    .nav-toggle-label {
        display: block;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-secondary);
        padding: 2rem 1rem;
        clip-path: circle(0% at top right);
        transition: clip-path 0.4s ease-in-out;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }
    
    .nav-toggle:checked ~ .nav {
        clip-path: circle(150% at top right);
    }
    
    .nav__list {
        flex-direction: column;
        text-align: center;
    }
    
    .nav__item {
        margin: 0.75rem 0;
    }
    
    .about__content,
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .values__grid,
    .services__grid,
    .why-us__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .policy__content {
        padding: 2.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Mobile */
@media screen and (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    h1, .hero__title {
        font-size: 2.4rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .container {
        max-width: 540px;
    }
    
    section {
        padding: 3.5rem 0;
    }
    
    .values__grid,
    .services__grid,
    .why-us__grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: 550px;
    }
    
    .hero__content {
        text-align: center;
        margin: 0 auto;
    }
    
    .form {
        padding: 2rem;
    }
    
    .testimonial {
        padding: 2.5rem 1.5rem;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .policy__content {
        padding: 2rem;
    }
    
    .cookie-popup__content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .cookie-popup__btn {
        width: 100%;
    }
}

/* Medium Mobile */
@media screen and (max-width: 576px) {
    html {
        font-size: 13px;
    }
    
    h1, .hero__title {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.6rem;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 500px;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
    }
    
    .form {
        padding: 1.5rem;
    }
    
    .contact__info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact__info-icon {
        margin: 0 auto 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
        font-size: 0.9rem;
    }
    
    .faq-toggle:checked ~ .faq-answer {
        padding: 1.2rem;
    }
    
    .policy__content {
        padding: 1.5rem;
    }
    
    .thanks__title {
        font-size: 2.2rem;
    }
    
    .thanks__text {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 375px) {
    html {
        font-size: 12px;
    }
    
    h1, .hero__title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .hero {
        min-height: 450px;
    }
    
    .logo {
        width: 120px;
    }
    
    .form__checkbox-label {
        font-size: 0.85rem;
    }
    
    .policy__content {
        padding: 1.2rem;
    }
} 