/* 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.7;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

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

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

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

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

/* Floating Navigation - Asymmetric */
.floating-nav {
    position: fixed;
    top: 2rem;
    right: 3rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-end;
}

.nav-links a {
    font-size: 0.95rem;
    color: #444;
    position: relative;
}

.nav-links a:hover {
    color: #000;
    transform: translateX(-3px);
}

/* Hero Asymmetric */
.hero-asymmetric {
    min-height: 90vh;
    display: flex;
    position: relative;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 550px;
    padding: 3rem 0 3rem 5rem;
    align-self: center;
}

.hero-title-large {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-hero {
    display: inline-block;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
}

.cta-hero:hover {
    background-color: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background-color: #e0e0e0;
}

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

/* Intro Offset Left */
.intro-offset-left {
    display: flex;
    padding: 5rem 3rem;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text-block {
    flex: 1.2;
    padding-left: 3rem;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
}

.intro-image-right {
    flex: 0.8;
    position: relative;
    top: -2rem;
    background-color: #d0d0d0;
    border-radius: 8px;
    overflow: hidden;
}

/* Services Irregular Grid */
.services-irregular {
    padding: 6rem 2rem;
    background-color: #fff;
}

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

.services-header-center h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-header-center p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    width: calc(33.333% - 2rem);
    min-width: 320px;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card.offset-top {
    margin-top: -3rem;
}

.service-card.offset-bottom {
    margin-top: 3rem;
}

.service-card.offset-left {
    margin-left: -1rem;
}

.service-card.offset-right {
    margin-right: -1rem;
}

.service-card.offset-top-large {
    margin-top: -5rem;
}

.service-card.offset-center {
    margin-top: 1.5rem;
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #d5d5d5;
}

.service-image-container img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    width: 100%;
    background-color: #2c2c2c;
    color: #fff;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-select-service:hover {
    background-color: #1a1a1a;
}

/* Form Section Diagonal */
.form-section-diagonal {
    padding: 6rem 2rem;
    background-color: #f5f5f5;
    position: relative;
}

.form-section-diagonal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fafafa 50%, #f5f5f5 50%);
    z-index: 0;
}

.form-container-offset {
    max-width: 650px;
    margin: 0 auto 0 15%;
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.form-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.form-intro {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.selected-service-info {
    background-color: #f0f0f0;
    padding: 1rem 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.selected-service-info p {
    margin-bottom: 0.5rem;
    color: #333;
}

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

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

.form-group.offset-field {
    margin-left: 2rem;
}

.form-group.offset-field-opposite {
    margin-right: 2rem;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.btn-submit-form {
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
}

.btn-submit-form:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.btn-submit-form.enabled:hover {
    background-color: #1a1a1a;
}

.form-note {
    font-size: 0.9rem;
    color: #999;
    text-align: center;
    margin-top: -0.5rem;
}

/* Community Overlap */
.community-overlap {
    padding: 5rem 2rem;
    background-color: #fff;
}

.community-content {
    max-width: 800px;
    margin: 0 auto 0 20%;
    padding: 3rem;
}

.community-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.community-content p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Testimonials Scattered */
.testimonial-scattered {
    padding: 5rem 2rem;
    background-color: #f8f8f8;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.testimonial-block {
    max-width: 380px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-block.pos-1 {
    margin-top: -2rem;
}

.testimonial-block.pos-2 {
    margin-top: 3rem;
}

.testimonial-block.pos-3 {
    margin-top: 0;
}

.testimonial-text {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

/* CTA Final Offset */
.cta-final-offset {
    padding: 6rem 2rem;
    background-color: #2c2c2c;
    color: #fff;
}

.cta-content-block {
    max-width: 700px;
    margin: 0 15% 0 auto;
    text-align: right;
}

.cta-content-block h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-button-large {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
}

.cta-button-large:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer Asymmetric */
.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.footer-column a {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    color: #ccc;
}

.footer-column a:hover {
    color: #fff;
}

.footer-disclaimer {
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: #999;
    line-height: 1.5;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px 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;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #fff;
    color: #1a1a1a;
}

.btn-cookie-accept:hover {
    background-color: #f0f0f0;
}

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

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

/* About Page Styles */
.about-hero-offset {
    padding: 6rem 2rem 3rem;
    text-align: center;
}

.page-title-large {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.about-hero-image {
    max-width: 1100px;
    margin: 2rem auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background-color: #d5d5d5;
}

.about-story-irregular {
    padding: 4rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.story-block {
    max-width: 700px;
    margin-bottom: 4rem;
    padding: 2rem;
}

.story-block.left-offset {
    margin-left: 0;
    margin-right: auto;
}

.story-block.right-offset {
    margin-left: auto;
    margin-right: 0;
}

.story-block.center-overlap {
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 3rem;
    border-radius: 8px;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.story-block p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.values-scattered {
    padding: 4rem 2rem;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.value-card {
    max-width: 350px;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.value-card.pos-left {
    margin-top: -2rem;
}

.value-card.pos-right {
    margin-top: 2rem;
}

.value-card.pos-bottom {
    margin-top: 0;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.value-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.team-asymmetric {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
}

.team-asymmetric h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.team-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.team-member {
    max-width: 300px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.team-member.offset-down {
    margin-top: 2rem;
}

.team-member.offset-up {
    margin-top: -2rem;
}

.team-role {
    font-size: 0.9rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.team-member p:last-child {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.philosophy-block {
    padding: 5rem 2rem;
    background-color: #fff;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

/* Services Page Styles */
.services-page-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
    background-color: #fff;
}

.page-title-offset {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.subtitle-large {
    font-size: 1.3rem;
    color: #666;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.service-detail-card.offset-layout-1 {
    margin-left: 0;
}

.service-detail-card.offset-layout-2 {
    flex-direction: row-reverse;
    margin-right: 0;
}

.service-detail-card.offset-layout-3 {
    margin-left: 3rem;
}

.service-detail-card.offset-layout-4 {
    flex-direction: row-reverse;
    margin-right: 3rem;
}

.service-detail-card.offset-layout-5 {
    margin-left: 0;
}

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

.service-detail-image {
    flex: 1;
    min-width: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    background-color: #d5d5d5;
}

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

.service-features li {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.7rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.comparison-section {
    padding: 4rem 2rem;
    background-color: #f8f8f8;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

.comparison-guidance {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.guidance-card {
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.guidance-card.offset-down {
    margin-top: 2rem;
}

.guidance-card.offset-up {
    margin-top: -2rem;
}

.guidance-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.guidance-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.cta-services-page {
    padding: 5rem 2rem;
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
}

.cta-services-page h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-services-page p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #fff;
    color: #2c2c2c;
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Contact Page Styles */
.contact-hero {
    padding: 5rem 2rem 3rem;
    text-align: center;
}

.subtitle {
    font-size: 1.2rem;
    color: #666;
}

.contact-layout-asymmetric {
    padding: 3rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 3rem;
}

.contact-info-block {
    max-width: 380px;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.contact-info-block.offset-position {
    margin-top: -2rem;
}

.contact-info-block.offset-opposite {
    margin-top: 2rem;
}

.contact-info-block.offset-center {
    margin-top: 0;
}

.contact-info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.note-small {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.visit-info {
    padding: 4rem 2rem;
    background-color: #fff;
    text-align: center;
}

.visit-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.visit-content {
    max-width: 800px;
    margin: 0 auto;
}

.visit-content p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.directions-asymmetric {
    padding: 4rem 2rem;
    background-color: #f5f5f5;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 2rem;
}

.directions-block {
    max-width: 350px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
}

.directions-block.offset-down {
    margin-top: 2rem;
}

.directions-block.offset-up {
    margin-top: -2rem;
}

.directions-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.directions-block p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.faq-contact {
    padding: 4rem 2rem;
    background-color: #fff;
}

.faq-contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.faq-item {
    max-width: 500px;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.faq-item.offset-right {
    margin-left: 3rem;
}

.faq-item.offset-left {
    margin-right: 3rem;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

.faq-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Thanks Page Styles */
.thanks-hero {
    padding: 6rem 2rem;
    background-color: #f8f8f8;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content-center {
    max-width: 800px;
    text-align: center;
}

.thanks-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-service-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next-steps {
    text-align: left;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-number {
    background-color: #2c2c2c;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-item p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.6;
    padding-top: 0.5rem;
}

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

.btn-back-home,
.btn-view-services {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
}

.btn-back-home {
    background-color: #2c2c2c;
    color: #fff;
}

.btn-back-home:hover {
    background-color: #1a1a1a;
}

.btn-view-services {
    background-color: #fff;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
}

.btn-view-services:hover {
    background-color: #f5f5f5;
}

.thanks-additional-info {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    text-align: left;
}

.thanks-additional-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-additional-info p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #1a1a1a;
}

.legal-content p {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-content li {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.legal-updated {
    margin-top: 3rem;
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-image-overlap {
        width: 50%;
        right: 0;
    }

    .floating-nav {
        top: 1rem;
        right: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

@media (max-width: 900px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content-offset {
        padding: 2rem 1rem;
        max-width: 100%;
    }

    .hero-title-large {
        font-size: 3rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        margin-top: 2rem;
    }

    .intro-offset-left {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

    .intro-text-block {
        padding-left: 0;
    }

    .intro-image-right {
        top: 0;
    }

    .service-card {
        width: 100%;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .form-container-offset {
        margin: 0 auto;
    }

    .form-group.offset-field,
    .form-group.offset-field-opposite {
        margin-left: 0;
        margin-right: 0;
    }

    .community-content {
        margin: 0 auto;
    }

    .cta-content-block {
        margin: 0 auto;
        text-align: center;
    }

    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        margin: 1rem;
    }

    .nav-links {
        flex-direction: row;
        gap: 1rem;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

    .page-title-large,
    .page-title-offset {
        font-size: 2.5rem;
    }

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

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

    .services-header-center h2 {
        font-size: 2rem;
    }

    .cta-content-block h2 {
        font-size: 2rem;
    }

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