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

:root {
    --primary-color: #2c5f4f;
    --secondary-color: #4a8b73;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f6f3;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

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

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
}

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-story {
    position: relative;
    width: 100%;
    min-height: 600px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: var(--bg-light);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    color: white;
    max-width: 800px;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 1.4rem;
    color: white;
    max-width: 600px;
    opacity: 0.95;
}

.story-intro {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.narrow-content p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.narrow-content img {
    width: 100%;
    height: auto;
    margin: 3rem 0;
    border-radius: 8px;
    background-color: var(--bg-light);
    object-fit: cover;
}

.problem-amplification {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.split-image {
    flex: 1;
    background-color: var(--bg-white);
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    padding: 5rem 2rem;
    background: var(--primary-color);
    color: white;
}

.centered-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.centered-block h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

.centered-block p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.solution-reveal {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.trust-markers {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.trust-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.testimonial-block blockquote {
    font-style: normal;
}

.testimonial-block p {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial-block cite {
    font-style: normal;
    color: var(--text-light);
    font-weight: 600;
}

.benefits-section {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: white;
}

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

.benefits-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.benefits-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 260px;
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.benefit-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-size: 1.05rem;
    opacity: 0.9;
}

.services-pricing {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.pricing-reveal {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-reveal h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.pricing-reveal > p {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: 320px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--bg-white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--primary-color);
}

.service-card p {
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
}

.price-tag {
    margin: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-color);
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem;
    padding: 1rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.order-form-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.order-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    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(--secondary-color);
}

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

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

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

.final-cta {
    padding: 5rem 2rem;
    background: var(--accent-color);
    color: white;
}

.cta-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-block p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.05);
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: var(--bg-light);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255,255,255,0.7);
    border-left: 4px solid var(--accent-color);
    border-radius: 6px;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

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

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

.footer-column p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column ul li a:hover {
    opacity: 1;
}

.footer-references {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-references h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-references ol {
    font-size: 0.9rem;
    opacity: 0.8;
    padding-left: 1.5rem;
}

.footer-references ol li {
    margin-bottom: 0.8rem;
}

.footer-references a {
    color: var(--bg-white);
    text-decoration: underline;
    opacity: 0.8;
}

.footer-references a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

.about-hero, .services-header, .contact-hero, .thanks-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.about-hero-content h1, .services-intro h1, .contact-intro h1, .thanks-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-hero-content p, .services-intro p, .contact-intro p {
    font-size: 1.3rem;
    color: var(--text-light);
}

.about-story, .values-section, .team-approach, .commitment-section {
    padding: 5rem 2rem;
}

.about-story {
    background: var(--bg-white);
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.values-section {
    background: var(--bg-light);
}

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

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

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

.value-card p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.team-approach {
    background: var(--bg-white);
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.process-list {
    padding-left: 2rem;
}

.process-list li {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.process-list li strong {
    color: var(--primary-color);
}

.commitment-section {
    background: var(--bg-light);
}

.commitment-block {
    max-width: 900px;
    margin: 0 auto;
}

.commitment-block h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.commitment-block p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.services-catalog {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

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

.service-detail {
    margin-bottom: 5rem;
}

.service-layout {
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.service-info p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.service-info ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.service-info ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 2rem 0;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.service-visual {
    flex: 1;
    background-color: var(--bg-light);
}

.service-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-cta {
    padding: 5rem 2rem;
    background: var(--secondary-color);
    color: white;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-details {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-block {
    flex: 1.5;
}

.contact-block h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

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

.info-card .note {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    background-color: var(--bg-light);
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.visit-info {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

.visit-container {
    max-width: 900px;
    margin: 0 auto;
}

.visit-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.visit-container p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.contact-cta {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.cta-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.thanks-content {
    max-width: 900px;
    margin: 0 auto;
}

.thanks-content p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.order-confirmation {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
}

.order-confirmation h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
}

.selected-service-info {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

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

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

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

.thanks-info {
    padding: 4rem 2rem;
    background: var(--bg-white);
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.info-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.info-box p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.legal-content {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.legal-container em {
    color: var(--text-light);
    font-size: 0.95rem;
}

.legal-container ul, .legal-container ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container ul li, .legal-container ol li {
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.legal-container strong {
    color: var(--primary-color);
}

@media (max-width: 1024px) {
    .split-layout, .story-layout, .service-layout, .contact-container {
        flex-direction: column;
    }

    .service-detail.reverse .service-layout {
        flex-direction: column;
    }

    .hero-overlay h1 {
        font-size: 2.5rem;
    }

    .hero-overlay p {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

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

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

    .service-card {
        flex: 1 1 100%;
    }

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