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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

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

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

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-cookie-accept {
    background: #4CAF50;
    color: white;
}

.btn-cookie-accept:hover {
    background: #45a049;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid #666;
}

.btn-cookie-reject:hover {
    border-color: #999;
}

.main-nav {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

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

.nav-links a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #d4af37;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.hero-split {
    min-height: 90vh;
    display: flex;
    align-items: center;
}

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

.hero-left {
    flex: 1;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 2px;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #2c3e50;
    color: white;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s;
    border: 2px solid #2c3e50;
}

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

.story-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.story-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-image {
    flex: 1;
}

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

.story-text {
    flex: 1;
    max-width: 550px;
}

.story-text h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #444;
}

.btn-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #2c3e50;
    font-weight: 600;
    border: 2px solid #2c3e50;
    border-radius: 2px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #2c3e50;
    color: white;
}

.insight-block {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.insight-block h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.lead-text {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 4rem;
    line-height: 1.7;
}

.insight-cards {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 250px;
    padding: 2.5rem;
    background: #f8f9fa;
    text-align: left;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.2rem;
    color: #555;
}

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

.service-left {
    flex-direction: row;
}

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

.service-visual {
    flex: 1;
}

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

.service-info {
    flex: 1;
    max-width: 550px;
}

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

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.service-duration {
    font-style: italic;
    color: #777;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-price-box {
    margin: 1.5rem 0;
}

.price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: #2c3e50;
    color: white;
    font-weight: 600;
    border-radius: 2px;
    margin-top: 1rem;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 6rem 2rem;
    background: #1a1a1a;
    color: white;
}

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

.testimonials-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid #d4af37;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.process-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.process-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    min-width: 60px;
}

.step-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-content p {
    color: #555;
    line-height: 1.7;
}

.process-image {
    flex: 1;
}

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

.form-section {
    padding: 7rem 2rem;
    background: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 1.1rem;
    color: #555;
}

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

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

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

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

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

.btn-submit {
    padding: 1.1rem 2rem;
    background: #d4af37;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #b8941f;
    transform: translateY(-2px);
}

.final-cta {
    padding: 7rem 2rem;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

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

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #d4af37;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 4rem 2rem 2rem;
}

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

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

.footer-column h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #d4af37;
}

.footer-column p {
    color: #ccc;
    line-height: 1.7;
}

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

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

.footer-column a {
    color: #ccc;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
    color: #999;
}

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

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

.sticky-cta-btn:hover {
    background: #b8941f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

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

    .nav-links a {
        padding: 1rem 2rem;
    }

    .nav-toggle {
        display: flex;
    }

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

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

    .story-split {
        flex-direction: column;
        gap: 3rem;
    }

    .service-split {
        flex-direction: column !important;
        gap: 2rem;
    }

    .process-split {
        flex-direction: column;
        gap: 3rem;
    }

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

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

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

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

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

    .section-header-center h2,
    .story-text h2,
    .insight-block h2 {
        font-size: 2rem;
    }

    .nav-container {
        padding: 1rem;
    }

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

.about-hero {
    padding: 6rem 2rem 4rem;
    background: #f8f9fa;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    max-width: 500px;
}

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

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.story-block {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-block p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
}

.story-image-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.story-image-grid img {
    flex: 1;
    height: 400px;
    object-fit: cover;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.philosophy-item {
    flex: 1;
    min-width: 250px;
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.philosophy-item p {
    line-height: 1.7;
    opacity: 0.9;
}

.qualifications-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.qual-text {
    flex: 1;
}

.qual-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.qual-list {
    list-style: none;
}

.qual-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
}

.qual-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
    font-size: 1.3rem;
}

.qual-image {
    flex: 1;
}

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

.approach-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.approach-container {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 4rem;
}

.approach-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.approach-number {
    width: 60px;
    height: 60px;
    background: #d4af37;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.approach-block p {
    color: #555;
    line-height: 1.7;
}

.values-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.values-text {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cta-about {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

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

.services-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    text-align: center;
}

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

.services-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.7;
}

.services-list {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.service-detail-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

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

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

.service-detail-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

.service-detail-content h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    color: #2c3e50;
}

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

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.service-meta {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 2rem 0;
}

.service-duration-tag {
    color: #777;
    font-style: italic;
}

.service-price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
}

.service-detail-card.premium {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.services-faq {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

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

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

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

.services-cta {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

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

.contact-hero {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

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

.contact-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.7;
}

.contact-main {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.contact-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-item a {
    color: #d4af37;
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.contact-visual {
    flex: 1;
    max-width: 500px;
}

.contact-visual img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.contact-note-section {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.contact-note-content h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

.response-icon {
    width: 50px;
    height: 50px;
    background: #d4af37;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
    border-radius: 50%;
}

.response-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.response-text p {
    color: #555;
    line-height: 1.7;
}

.contact-faq {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-cta {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: white;
    text-align: center;
}

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

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

.thanks-section {
    padding: 8rem 2rem;
    background: #f8f9fa;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #4CAF50;
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.thanks-detail-box {
    background: white;
    padding: 2rem;
    border-radius: 4px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.thanks-detail-box h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-detail-box p {
    margin-bottom: 0.8rem;
    color: #555;
}

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

.thanks-next h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.next-steps {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.next-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 4px;
}

.step-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1rem;
}

.next-step p {
    color: #555;
    line-height: 1.6;
}

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

.thanks-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
}

.thanks-contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.thanks-contact a {
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-contact a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    color: #777;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-container p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-container li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #d4af37;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #b8941f;
}

@media (max-width: 968px) {
    .about-hero-content {
        flex-direction: column;
        text-align: center;
    }

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

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

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

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

    .approach-blocks {
        gap: 2rem;
    }

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

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

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

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

    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .next-steps {
        flex-direction: column;
        align-items: center;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }
}