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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #c89968;
    --accent-color: #8b7355;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e5e2dd;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
    margin-left: auto;
    margin-right: 20px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: center;
}

.hero-text-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.hero-text-card h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-card p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.hero-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--border-color);
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: var(--shadow-sm);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.intro-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.intro-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
}

.services-grid {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-title {
    font-size: 2.4rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: calc(33.333% - 20px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.card-image-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--border-color);
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-content {
    padding: 28px;
}

.card-content h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.card-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
    transform: scale(1.02);
}

.form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group input[readonly] {
    background-color: var(--bg-light);
    color: var(--text-dark);
    cursor: not-allowed;
}

.btn-submit {
    padding: 16px 36px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.info-banner {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.banner-card h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.benefits-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.benefit-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.benefit-item h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--secondary-color);
    font-weight: 600;
}

.benefit-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 800px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
}

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

.btn-accept:hover {
    transform: scale(1.05);
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    opacity: 0.8;
}

.page-header {
    padding: 60px 0;
    background-color: var(--bg-white);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.page-header h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content,
.services-detail,
.contact-content {
    padding: 80px 0;
}

.about-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background-color: var(--border-color);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section,
.process-section {
    margin-bottom: 60px;
}

.values-section h2,
.process-section h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.values-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 240px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid var(--border-color);
}

.step-number {
    display: inline-block;
    width: 56px;
    height: 56px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

.mission-card {
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.mission-card h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.mission-card p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 40px;
    border: 1px solid var(--border-color);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 20px;
}

.service-header h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-body {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background-color: var(--border-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-description {
    flex: 1;
}

.service-description h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.service-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-description ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.service-description ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-note {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-card {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.cta-card h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-info-card,
.contact-map-card {
    flex: 1;
    min-width: 320px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-detail p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.map-placeholder {
    background-color: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
    border: 2px dashed var(--border-color);
}

.map-placeholder p {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

.map-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 400;
}

.contact-additional {
    margin-top: 60px;
}

.contact-additional h2 {
    font-size: 2rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-cards {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.info-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.info-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.thanks-card {
    background-color: var(--bg-white);
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 32px;
}

.thanks-card h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

.service-confirm {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
}

.steps-list {
    list-style: none;
    counter-reset: steps-counter;
}

.steps-list li {
    counter-increment: steps-counter;
    position: relative;
    padding-left: 40px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.steps-list li:before {
    content: counter(steps-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.legal-page {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.legal-content {
    background-color: var(--bg-white);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.last-update {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--accent-color);
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 10px;
}

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    box-shadow: var(--shadow-sm);
    border-radius: 8px;
    overflow: hidden;
}

.gdpr-table thead,
.cookie-table thead {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.gdpr-table th,
.cookie-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.gdpr-table td,
.cookie-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-light);
}

.gdpr-table tbody tr:hover,
.cookie-table tbody tr:hover {
    background-color: var(--bg-light);
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .ad-label {
        order: 3;
        margin: 12px 0 0 0;
        width: 100%;
        text-align: center;
    }

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

    .hero-text-card {
        padding: 36px;
    }

    .hero-text-card h1 {
        font-size: 2rem;
    }

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

    .service-card {
        width: 100%;
    }

    .about-card {
        flex-direction: column;
        padding: 32px;
    }

    .service-body {
        flex-direction: column;
    }

    .service-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .contact-grid {
        flex-direction: column;
    }

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

    .benefits-grid {
        flex-direction: column;
    }

    .form-card {
        padding: 36px 24px;
    }

    .legal-content {
        padding: 36px 24px;
    }

    .thanks-card {
        padding: 48px 32px;
    }
}
