/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* Navigation */
.main-nav {
    background: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-menu a {
    color: #4a4a4a;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #1a1a1a;
    transition: 0.3s;
}

/* Hero Split Screen */
.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: #f8f6f3;
}

.hero-content {
    max-width: 500px;
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background: #8b7355;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background: #6f5a42;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #8b7355;
    padding: 16px 40px;
    border: 2px solid #8b7355;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #8b7355;
    color: #ffffff;
}

.link-inline {
    color: #8b7355;
    font-weight: 600;
    border-bottom: 2px solid #8b7355;
    padding-bottom: 2px;
    transition: color 0.3s;
}

.link-inline:hover {
    color: #6f5a42;
}

/* Intro Story Section */
.intro-story {
    padding: 100px 20px;
    background: #ffffff;
}

.intro-story h2 {
    font-size: 2.2rem;
    line-height: 1.4;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-story p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Split Sections */
.split-standard,
.split-reverse {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

.split-content {
    flex: 1;
    padding: 40px 60px;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.split-image {
    flex: 1;
    overflow: hidden;
}

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

/* Problem Section */
.problem-section {
    background: #f8f6f3;
}

/* Insight Block */
.insight-block {
    padding: 100px 20px;
    background: #2c2c2c;
    color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.insight-item {
    flex: 1;
}

.insight-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #d4b896;
}

.insight-item p {
    color: #d9d9d9;
    line-height: 1.7;
}

/* Story Visual */
.story-visual {
    background: #ffffff;
}

/* Values List */
.values-list {
    list-style: none;
    margin-top: 30px;
}

.values-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.values-list li:last-child {
    border-bottom: none;
}

/* Testimonials Inline */
.testimonials-inline {
    padding: 100px 20px;
    background: #f8f6f3;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #8b7355;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: #8b7355;
}

/* Collection Preview */
.collection-preview {
    padding: 100px 20px;
    background: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.collection-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.collection-card {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-content {
    padding: 25px;
    background: #ffffff;
}

.card-content h4 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.card-content p {
    color: #5a5a5a;
    line-height: 1.6;
}

/* Trust Indicators */
.trust-indicators {
    padding: 80px 20px;
    background: #8b7355;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-item {
    flex: 1;
}

.trust-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.trust-item p {
    color: #f0e8dc;
    font-size: 1.1rem;
}

/* Benefits Reveal */
.benefits-reveal {
    background: #f8f6f3;
}

.benefit-list {
    margin-top: 30px;
}

.benefit-item {
    margin-bottom: 30px;
}

.benefit-item h5 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.benefit-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Pricing Section */
.pricing-section {
    padding: 100px 20px;
    background: #ffffff;
}

.pricing-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 60px;
    line-height: 1.7;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f8f6f3;
    padding: 40px 30px;
    border-radius: 8px;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.pricing-card.featured {
    background: #2c2c2c;
    color: #ffffff;
}

.pricing-card.featured h4,
.pricing-card.featured .price {
    color: #ffffff;
}

.pricing-card.featured .service-desc {
    color: #d9d9d9;
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #8b7355;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-desc {
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 25px;
    min-height: 80px;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 25px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #8b7355;
    color: #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #6f5a42;
}

.pricing-card.featured .btn-select-service {
    background: #d4b896;
    color: #1a1a1a;
}

.pricing-card.featured .btn-select-service:hover {
    background: #c4a886;
}

/* Form Section */
.form-section {
    padding: 100px 20px;
    background: #f8f6f3;
}

.form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b7355;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #8b7355;
    color: #ffffff;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #6f5a42;
}

/* Urgency Section */
.urgency-section {
    padding: 80px 20px;
    background: #2c2c2c;
}

.urgency-box {
    background: #3d3d3d;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
    border-left: 6px solid #8b7355;
}

.urgency-box h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.urgency-box p {
    color: #d9d9d9;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Final Testimonial */
.final-testimonial {
    background: #ffffff;
}

.testimonial-large {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 25px;
    border-left: 4px solid #8b7355;
    padding-left: 30px;
}

.testimonial-author-large {
    font-size: 1.1rem;
    font-weight: 600;
    color: #8b7355;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #d9d9d9;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

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

.footer-col a {
    color: #b8b8b8;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #8b7355;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3a3a3a;
    color: #888;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.btn-sticky {
    display: block;
    background: #8b7355;
    color: #ffffff;
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(139, 115, 85, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-sticky:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 30px rgba(139, 115, 85, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    color: #d9d9d9;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    transition: opacity 0.3s;
}

.btn-cookie-accept {
    background: #8b7355;
    color: #ffffff;
}

.btn-cookie-accept:hover {
    opacity: 0.9;
}

.btn-cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Page Hero */
.page-hero {
    padding: 100px 20px 60px;
    background: #f8f6f3;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-lead {
    font-size: 1.3rem;
    color: #5a5a5a;
}

/* About Specific */
.about-story {
    background: #ffffff;
}

.vision-block {
    padding: 100px 20px;
    background: #f8f6f3;
}

.vision-block h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.vision-block p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    background: #ffffff;
}

.values-detailed {
    list-style: none;
}

.values-detailed li {
    margin-bottom: 30px;
}

.values-detailed strong {
    display: block;
    font-size: 1.3rem;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.values-detailed p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* Process Section */
.process-section {
    padding: 100px 20px;
    background: #2c2c2c;
}

.process-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 60px;
}

.process-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.process-step p {
    color: #d9d9d9;
    line-height: 1.7;
}

/* Team Intro */
.team-intro {
    background: #f8f6f3;
}

/* Impact Section */
.impact-section {
    padding: 100px 20px;
    background: #ffffff;
}

.impact-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.impact-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* CTA About */
.cta-about {
    padding: 80px 20px;
    background: #8b7355;
}

.cta-box-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box-centered h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-box-centered p {
    font-size: 1.1rem;
    color: #f0e8dc;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Services Page */
.services-intro {
    padding: 60px 20px;
    background: #ffffff;
}

.services-intro p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    text-align: center;
}

.service-detail {
    background: #ffffff;
}

.service-detail:nth-child(even) {
    background: #f8f6f3;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #8b7355;
    margin: 25px 0;
}

.featured-tag {
    display: inline-block;
    background: #8b7355;
    color: #ffffff;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Services FAQ */
.services-faq {
    padding: 100px 20px;
    background: #f8f6f3;
}

.services-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-item {
    background: #ffffff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #8b7355;
}

.faq-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.faq-item p {
    color: #5a5a5a;
    line-height: 1.7;
}

/* CTA Services */
.cta-services {
    padding: 80px 20px;
    background: #2c2c2c;
}

/* Contact Page */
.contact-split {
    background: #ffffff;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h4 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-info-block p {
    color: #5a5a5a;
    line-height: 1.7;
}

.contact-info-block a {
    color: #8b7355;
    font-weight: 600;
}

.info-note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 8px;
}

/* Visit Info */
.visit-info {
    padding: 100px 20px;
    background: #f8f6f3;
}

.visit-info h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.visit-info p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.visit-list {
    list-style: disc;
    margin-left: 25px;
    margin-top: 25px;
}

.visit-list li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.visit-note {
    margin-top: 30px;
    padding: 20px;
    background: #ffffff;
    border-left: 4px solid #8b7355;
    font-weight: 600;
}

/* Online Contact */
.online-contact {
    background: #ffffff;
}

/* Location Map */
.location-map {
    padding: 100px 20px;
    background: #f8f6f3;
}

.location-map h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.map-placeholder {
    background: #2c2c2c;
    padding: 100px 40px;
    text-align: center;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder p {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.map-note {
    color: #d9d9d9;
    font-size: 1rem;
}

/* Thanks Page */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f8f6f3;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #8b7355;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-bottom: 50px;
}

.thanks-details {
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-details h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.next-steps {
    list-style: none;
}

.next-steps li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #4a4a4a;
    line-height: 1.7;
}

.next-steps li:last-child {
    border-bottom: none;
}

.thanks-info {
    background: #fffaeb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid #8b7355;
}

.thanks-info p {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-extra {
    color: #5a5a5a;
}

.thanks-extra a {
    color: #8b7355;
    font-weight: 600;
    text-decoration: underline;
}

/* Legal Pages */
.legal-page {
    padding: 80px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.legal-update {
    color: #888;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.legal-page p {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page ul li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-page a {
    color: #8b7355;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background: #f8f6f3;
}

.cookie-table th,
.cookie-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    font-weight: 700;
    color: #1a1a1a;
}

.cookie-table td {
    color: #4a4a4a;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-split,
    .split-standard,
    .split-reverse,
    .insight-grid,
    .collection-grid,
    .trust-grid,
    .footer-grid,
    .process-grid {
        flex-direction: column;
    }

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

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .split-content {
        padding: 40px 20px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

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

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

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

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .contact-form {
        padding: 30px 20px;
    }
}
