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

:root {
    --primary-color: #2d7a3e;
    --secondary-color: #1a4d2e;
    --accent-color: #4a9960;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --overlay-dark: rgba(0, 0, 0, 0.6);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

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

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 1.5rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
}

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

.btn-accept:hover {
    background-color: var(--accent-color);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-asymmetric {
    background-color: var(--background-white);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    align-items: center;
}

.main-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.ad-label {
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    background-color: var(--background-light);
}

.hero-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 600px;
}

.hero-content-left {
    flex: 1;
    padding-right: 3rem;
    margin-left: 5%;
}

.text-block {
    max-width: 600px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-right: -5%;
    margin-top: -2rem;
}

.hero-image-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--background-light);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 122, 62, 0.3);
}

.intro-overlap {
    max-width: 1200px;
    margin: -4rem auto 6rem;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
}

.overlap-card {
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 10%;
    max-width: 800px;
}

.overlap-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.services-irregular {
    background-color: var(--background-light);
    padding: 6rem 2rem;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    margin-left: 15%;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.service-card {
    background-color: var(--background-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-medium {
    flex: 1 1 calc(50% - 1rem);
}

.card-small {
    flex: 1 1 calc(40% - 1rem);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: var(--background-light);
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.service-info p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 1rem;
}

.btn-select {
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.btn-select:hover {
    background-color: var(--secondary-color);
}

.approach-diagonal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.approach-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.approach-text {
    flex: 1;
    padding-left: 8%;
}

.approach-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-visual {
    flex: 1;
    margin-right: -5%;
}

.approach-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--background-light);
}

.form-section-offset {
    background-color: var(--background-light);
    padding: 6rem 2rem;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--background-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-left: 20%;
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

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

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

.selected-service-display {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-display p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.trust-block {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.trust-points {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-diagonal {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    margin: 6rem 0;
    transform: skewY(-2deg);
}

.cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transform: skewY(2deg);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: white;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cta-secondary:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

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

.disclaimer-footer {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 1000px;
    margin: 1rem auto 0;
}

.about-hero-offset {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    margin-left: 15%;
}

.about-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 900px;
}

.story-section-irregular {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.story-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
}

.story-reverse {
    flex-direction: row-reverse;
}

.story-text-left,
.story-text-right {
    flex: 1;
}

.story-text-left {
    padding-right: 2rem;
}

.story-text-right {
    padding-left: 2rem;
}

.story-text-left h3,
.story-text-right h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text-left p,
.story-text-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-right,
.story-image-left {
    flex: 1;
}

.story-image-right img,
.story-image-left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--background-light);
}

.values-asymmetric {
    background-color: var(--background-light);
    padding: 6rem 2rem;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 3rem;
    text-align: center;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background-color: var(--background-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.value-large {
    flex: 1 1 calc(55% - 1rem);
}

.value-medium {
    flex: 1 1 calc(50% - 1rem);
}

.value-small {
    flex: 1 1 calc(45% - 1rem);
}

.value-card h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.team-intro {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.team-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    background-color: var(--primary-color);
    padding: 5rem 2rem;
    margin-top: 6rem;
}

.services-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 3rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.service-reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-header {
    margin-bottom: 2rem;
}

.service-header h3 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.price-large {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-description h4 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-color);
}

.service-description p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-description ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-description ul li {
    font-size: 1rem;
    color: var(--text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.service-description ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--background-light);
}

.form-section-services {
    background-color: var(--background-white);
    padding: 6rem 2rem;
}

.contact-hero {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-intro h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-layout {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.contact-info-block {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
    margin-left: 10%;
}

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.info-item {
    margin-bottom: 2rem;
}

.info-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

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

.location-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.location-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.location-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

.thanks-section {
    max-width: 900px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.thanks-content {
    text-align: center;
    background-color: var(--background-light);
    padding: 4rem 3rem;
    border-radius: 8px;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background-color: var(--background-white);
    padding: 1.5rem;
    border-radius: 6px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-color);
}

.selected-service-info p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    text-align: left;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
}

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

.next-steps {
    max-width: 1200px;
    margin: 4rem auto 6rem;
    padding: 0 2rem;
}

.next-steps-content h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.steps-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.step-item p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content {
    background-color: var(--background-light);
    padding: 3rem;
    border-radius: 8px;
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.legal-date {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

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

.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--secondary-color);
}

@media (max-width: 1200px) {
    .hero-offset {
        flex-direction: column;
        margin: 3rem auto;
    }

    .hero-content-left {
        margin-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .text-block {
        max-width: 100%;
    }

    .hero-image-right {
        margin-right: 0;
        margin-top: 2rem;
        width: 100%;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .form-wrapper {
        margin-left: 0;
    }

    .contact-info-block {
        margin-left: 0;
    }

    .about-hero-offset {
        margin-left: 0;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .approach-content,
    .story-block,
    .service-detail-card {
        flex-direction: column;
    }

    .story-reverse {
        flex-direction: column;
    }

    .approach-text {
        padding-left: 0;
    }

    .approach-visual {
        margin-right: 0;
    }

    .story-text-left,
    .story-text-right {
        padding-right: 0;
        padding-left: 0;
    }

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
    }

    .value-large,
    .value-medium,
    .value-small {
        flex: 1 1 100%;
    }

    .trust-points,
    .steps-grid {
        flex-direction: column;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .header-asymmetric {
        padding: 1rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .main-nav ul {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .ad-label {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }

    .form-wrapper,
    .overlap-card,
    .legal-content {
        padding: 2rem;
    }

    .thanks-actions {
        flex-direction: column;
    }
}