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

:root {
    --color-primary: #2d5016;
    --color-secondary: #5a7c3e;
    --color-accent: #8b9d6f;
    --color-dark: #1a1a1a;
    --color-light: #f8f9f5;
    --color-white: #ffffff;
    --color-gray: #6b6b6b;
    --color-border: #d4d9ce;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    overflow-x: hidden;
}

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

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: var(--color-primary);
}

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

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--color-dark);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    color: var(--color-white);
    max-width: 1000px;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--color-white);
    max-width: 700px;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-hero {
    padding: 1.2rem 3rem;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-hero:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.image-text-overlap {
    padding: 8rem 5%;
    background: var(--color-light);
}

.overlap-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.overlap-image {
    flex: 1;
}

.overlap-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.overlap-text {
    flex: 1.2;
}

.overlap-text h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 400;
}

.overlap-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.cta-inline {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 500;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--color-primary);
    padding-bottom: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.visual-story {
    padding: 6rem 5%;
    background: var(--color-white);
}

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

.story-item {
    flex: 1;
    position: relative;
}

.story-item img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 4px;
}

.story-caption {
    margin-top: 1.5rem;
}

.story-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
    font-weight: 500;
}

.story-caption p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.trust-block {
    padding: 8rem 5%;
    background: var(--color-primary);
    color: var(--color-white);
}

.trust-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.trust-left {
    flex: 1;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    line-height: 1.3;
}

.trust-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.trust-right {
    flex: 1;
}

blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
}

cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    opacity: 0.9;
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.break-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
}

.break-text h2 {
    font-size: 3rem;
    color: var(--color-white);
    font-weight: 300;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.services-reveal {
    padding: 8rem 5%;
    background: var(--color-light);
}

.reveal-intro {
    max-width: 900px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.reveal-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-gray);
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--color-white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 280px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 500;
}

.service-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.6rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.form-section {
    padding: 8rem 5%;
    background: var(--color-white);
}

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

.form-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-dark);
    font-weight: 400;
}

.form-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

#selected-service-display {
    font-weight: 600;
    color: var(--color-primary);
}

.booking-form {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 4px;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 1rem;
}

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

.visual-quote {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.visual-quote img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    max-width: 900px;
}

.quote-overlay p {
    font-size: 2.5rem;
    color: var(--color-white);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.quote-overlay cite {
    font-size: 1.2rem;
    color: var(--color-white);
    font-style: normal;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.urgency-block {
    padding: 6rem 5%;
    background: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
}

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

.urgency-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.urgency-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-urgency {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-urgency:hover {
    background: var(--color-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

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

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

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

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: var(--color-white);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

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

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

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

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-dark);
    color: var(--color-white);
    padding: 1.5rem 5%;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero {
    padding: 10rem 5% 5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.page-hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
}

.services-detail {
    padding: 6rem 5%;
    background: var(--color-white);
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 6rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

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

.service-detail-image img {
    width: 100%;
    border-radius: 4px;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 500;
}

.service-price-tag {
    font-size: 1.8rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin: 2rem 0;
}

.service-features li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--color-gray);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-cta:hover {
    background: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.services-cta {
    padding: 5rem 5%;
    background: var(--color-light);
    text-align: center;
}

.services-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.services-cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.about-hero {
    position: relative;
    height: 60vh;
    overflow: hidden;
}

.about-hero-image {
    width: 100%;
    height: 100%;
}

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

.about-hero-text {
    position: absolute;
    bottom: 3rem;
    left: 5%;
    right: 5%;
    max-width: 900px;
    color: var(--color-white);
}

.about-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.about-hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.about-story {
    padding: 6rem 5%;
    background: var(--color-white);
}

.story-section {
    max-width: 900px;
    margin: 0 auto 5rem;
}

.story-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-dark);
    font-weight: 400;
}

.story-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.about-image-break {
    max-width: 1400px;
    margin: 5rem auto;
}

.about-image-break img {
    width: 100%;
    border-radius: 4px;
}

.about-team {
    max-width: 1200px;
    margin: 5rem auto;
}

.about-team h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: 400;
    text-align: center;
}

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

.team-member {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--color-light);
    padding: 2rem;
    border-radius: 4px;
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.team-member p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.about-cta {
    padding: 6rem 5%;
    background: var(--color-primary);
    text-align: center;
}

.about-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 400;
}

.about-cta-content p {
    font-size: 1.2rem;
    color: var(--color-white);
    margin-bottom: 2rem;
    opacity: 0.95;
}

.contact-hero {
    padding: 10rem 5% 5rem;
    background: var(--color-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.contact-hero p {
    font-size: 1.3rem;
    color: var(--color-gray);
    max-width: 800px;
    margin: 0 auto;
}

.contact-main {
    padding: 6rem 5%;
    background: var(--color-white);
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: 400;
}

.contact-item {
    margin-bottom: 2.5rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
    font-weight: 500;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.contact-item a {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-note {
    font-size: 0.95rem;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-visual {
    flex: 1;
    position: relative;
}

.contact-visual img {
    width: 100%;
    border-radius: 4px;
}

.visual-text {
    margin-top: 2rem;
    background: var(--color-light);
    padding: 2rem;
    border-radius: 4px;
}

.visual-text blockquote {
    background: transparent;
    padding: 0;
    color: var(--color-gray);
}

.visual-text cite {
    color: var(--color-primary);
}

.contact-faq {
    padding: 6rem 5%;
    background: var(--color-light);
}

.contact-faq h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-dark);
    font-weight: 400;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    background: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
}

.contact-cta {
    padding: 6rem 5%;
    background: var(--color-white);
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.contact-cta-content p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.thanks-hero {
    padding: 10rem 5% 6rem;
    background: var(--color-light);
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.thanks-intro {
    font-size: 1.4rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
}

.thanks-detail {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 4px;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.thanks-next {
    margin: 4rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: 400;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-weight: 500;
}

.step-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--color-gray);
}

.thanks-image {
    margin: 4rem 0;
}

.thanks-image img {
    width: 100%;
    border-radius: 4px;
}

.thanks-quote {
    margin: 3rem 0;
}

.thanks-quote blockquote {
    background: transparent;
    padding: 0;
    font-size: 1.8rem;
    color: var(--color-dark);
    text-align: center;
}

.thanks-cta {
    margin-top: 4rem;
}

.thanks-cta p {
    font-size: 1.2rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
}

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

.legal-page {
    padding: 10rem 5% 6rem;
    background: var(--color-white);
}

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

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 400;
}

.legal-updated {
    font-size: 1rem;
    color: var(--color-gray);
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    font-weight: 500;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--color-dark);
    font-weight: 500;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}

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

@media (max-width: 1024px) {
    .overlap-wrapper,
    .trust-content,
    .service-detail-item {
        flex-direction: column;
    }

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

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

    .story-item img {
        height: 400px;
    }

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

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

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

    .team-member {
        flex: 1 1 100%;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

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

    .nav-links li {
        padding: 1rem 5%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .overlap-text h2 {
        font-size: 2rem;
    }

    .break-text h2 {
        font-size: 2rem;
    }

    .reveal-intro h2 {
        font-size: 2rem;
    }

    .form-container h2 {
        font-size: 2rem;
    }

    .quote-overlay p {
        font-size: 1.5rem;
    }

    .page-hero-content h1,
    .about-hero-text h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-buttons,
    .thanks-links {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}