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

:root {
    --color-ocean: #0a4d68;
    --color-deep: #05161a;
    --color-coral: #ff6b5a;
    --color-sand: #f5f1e8;
    --color-seafoam: #7db9b6;
    --color-text: #1a1a1a;
    --color-text-light: #5a5a5a;
    --color-white: #ffffff;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-serif: Georgia, 'Times New Roman', serif;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-white);
}

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

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

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

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

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

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-cta {
    background: var(--color-ocean);
    color: var(--color-white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-cta:hover {
    background: var(--color-deep);
}

.hero-visual {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 2rem;
    max-width: 900px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    font-family: var(--font-serif);
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-white);
    color: var(--color-ocean);
    font-weight: 600;
    border-radius: 50px;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.intro-block {
    display: flex;
    min-height: 70vh;
    align-items: center;
}

.intro-visual {
    flex: 1;
}

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

.intro-text {
    flex: 1;
    padding: 4rem;
    background: var(--color-sand);
}

.intro-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--color-deep);
    font-weight: 400;
}

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

.statement-visual {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.statement-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.statement-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    padding: 3rem;
    max-width: 800px;
}

.statement-content h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.statement-content p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.problem-amplify {
    padding: 5rem 2rem;
    background: var(--color-deep);
    color: var(--color-white);
}

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

.problem-item {
    flex: 1;
    min-width: 300px;
}

.problem-item h4 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 600;
    color: var(--color-seafoam);
}

.problem-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.9;
}

.approach-reveal {
    padding: 6rem 2rem;
    background: var(--color-white);
}

.approach-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.approach-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

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

.approach-cards {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
}

.approach-image {
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

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

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

.approach-card h5 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-ocean);
}

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

.testimonial-inline {
    padding: 5rem 2rem;
    background: var(--color-seafoam);
}

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

.testimonial-content blockquote {
    font-size: 1.6rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--color-deep);
    font-family: var(--font-serif);
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--color-text);
    font-weight: 600;
}

.cta-midpoint {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--color-sand);
}

.cta-midpoint h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-deep);
}

.cta-large {
    padding: 1.2rem 3rem;
    background: var(--color-ocean);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

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

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

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.services-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

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

.service-feature {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

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

.service-visual {
    flex: 1;
    min-width: 400px;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-ocean);
}

.service-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text);
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.service-cta {
    padding: 1rem 2rem;
    background: var(--color-ocean);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-cta:hover {
    background: var(--color-deep);
}

.trust-indicators {
    padding: 5rem 2rem;
    background: var(--color-sand);
}

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

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

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

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

.testimonial-grid {
    padding: 5rem 2rem;
    background: var(--color-white);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background: var(--color-sand);
    border-radius: 8px;
}

.testimonial-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.testimonial-item cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--color-text-light);
    font-weight: 600;
}

.urgency-block {
    padding: 4rem 2rem;
    background: var(--color-coral);
    color: var(--color-white);
}

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

.urgency-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.urgency-note {
    font-weight: 600;
    font-size: 1.05rem;
}

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

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

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

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

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

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

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

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

.form-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--color-ocean);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-submit:hover {
    background: var(--color-deep);
}

.final-statement {
    display: flex;
    min-height: 80vh;
}

.final-visual {
    flex: 1;
}

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

.final-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
    background: var(--color-ocean);
    color: var(--color-white);
}

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

.final-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color-white);
    color: var(--color-ocean);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    align-self: flex-start;
    transition: transform 0.3s ease;
}

.cta-final:hover {
    transform: translateY(-2px);
    color: var(--color-ocean);
}

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

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

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.95rem;
    opacity: 0.8;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-seafoam);
}

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

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

.footer-col a {
    color: var(--color-white);
    opacity: 0.8;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

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

.footer-bottom {
    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;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 900;
}

.sticky-cta-btn {
    padding: 1rem 2rem;
    background: var(--color-coral);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-3px);
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 0.95rem;
}

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

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

.cookie-accept {
    background: var(--color-seafoam);
    color: var(--color-deep);
}

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    padding: 10rem 2rem 5rem;
    background: var(--color-sand);
    text-align: center;
}

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

.page-hero-content p {
    font-size: 1.3rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    padding: 4rem 2rem;
    background: var(--color-white);
}

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

.story-block {
    margin-bottom: 3rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-ocean);
}

.story-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-ocean);
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.story-block ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.story-block li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: var(--color-text-light);
}

.story-image {
    margin: 3rem 0;
    border-radius: 10px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-sand);
    border-radius: 8px;
}

.principle-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--color-ocean);
}

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

.cta-about {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--color-ocean);
    color: var(--color-white);
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--color-white);
    color: var(--color-ocean);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    color: var(--color-ocean);
}

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

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

.services-intro-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    padding: 3rem;
    background: var(--color-sand);
    border-radius: 10px;
}

.service-detail-card.featured {
    background: var(--color-ocean);
    color: var(--color-white);
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
}

.service-detail-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--color-ocean);
}

.featured .service-detail-content h2 {
    color: var(--color-white);
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.spec-item {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.featured .spec-item {
    color: rgba(255, 255, 255, 0.9);
}

.service-detail-price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-ocean);
}

.featured .service-detail-price {
    color: var(--color-white);
}

.service-detail-cta {
    padding: 1rem 2rem;
    background: var(--color-ocean);
    color: var(--color-white);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.featured .service-detail-cta {
    background: var(--color-white);
    color: var(--color-ocean);
}

.service-detail-cta:hover {
    opacity: 0.9;
}

.service-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.services-faq {
    padding: 5rem 2rem;
    background: var(--color-sand);
}

.services-faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--color-deep);
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-white);
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: var(--color-ocean);
}

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

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-ocean);
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: var(--color-text);
}

.contact-address {
    line-height: 1.8;
}

.contact-email a {
    color: var(--color-ocean);
    font-weight: 600;
}

.contact-note {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.contact-map {
    flex: 1;
}

.map-placeholder {
    position: relative;
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--color-white);
}

.map-overlay p {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: var(--color-sand);
}

.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-deep);
}

.thanks-hero {
    padding: 10rem 2rem 5rem;
    background: var(--color-sand);
    text-align: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

.thanks-lead {
    font-size: 1.4rem;
    color: var(--color-text-light);
}

.thanks-details {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.thanks-info {
    flex: 2;
}

.thanks-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--color-ocean);
}

.thanks-steps {
    margin-bottom: 3rem;
}

.thanks-step {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.thanks-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-ocean);
}

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

.thanks-note {
    padding: 2rem;
    background: var(--color-sand);
    border-radius: 8px;
}

.thanks-note h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

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

.thanks-sidebar {
    flex: 1;
}

.thanks-box {
    padding: 2rem;
    margin-bottom: 2rem;
    background: var(--color-ocean);
    color: var(--color-white);
    border-radius: 8px;
}

.thanks-box h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.thanks-box p {
    font-size: 1rem;
    line-height: 1.6;
}

.thanks-box a {
    color: var(--color-seafoam);
    font-weight: 600;
}

.thanks-cta {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--color-sand);
}

.thanks-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-deep);
}

.thanks-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--color-deep);
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-ocean);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--color-ocean);
}

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

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-page li {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 0.7rem;
    color: var(--color-text-light);
}

.legal-page a {
    color: var(--color-ocean);
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

.cookies-table th {
    background: var(--color-sand);
    font-weight: 600;
    color: var(--color-ocean);
}

.cookies-table td {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .intro-block,
    .service-feature,
    .service-feature.reverse,
    .final-statement {
        flex-direction: column;
    }

    .intro-text,
    .final-text {
        padding: 2rem;
    }

    .service-visual {
        min-width: 100%;
    }

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

    .service-detail-card {
        flex-direction: column;
        padding: 2rem;
    }

    .service-detail-image {
        min-width: 100%;
    }

    .contact-content,
    .thanks-details {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .booking-form {
        padding: 2rem;
    }
}