:root {
    --primary-color: #1a2332;
    --secondary-color: #2d4059;
    --accent-color: #ea5455;
    --text-color: #2c3e50;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --border-color: #dee2e6;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

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

a {
    color: var(--accent-color);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.main-nav {
    background-color: var(--primary-color);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
    opacity: 0.9;
}

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

.nav-links a {
    color: var(--white);
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.8;
    text-decoration: none;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

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

.intro-statement {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.split-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.split-answer {
    flex: 1;
}

.split-answer p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.problem-amplification {
    padding: 5rem 2rem;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.text-block {
    flex: 1;
}

.text-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--primary-color);
}

.text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.visual-block {
    flex: 1;
}

.visual-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    border-radius: 8px;
}

.insight-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.approach-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.approach-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.trust-building {
    padding: 5rem 2rem;
}

.testimonial-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text blockquote {
    font-size: 1.4rem;
    line-height: 1.7;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    border-left: 4px solid var(--accent-color);
}

.testimonial-text cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray);
}

.testimonial-context {
    flex: 1;
}

.testimonial-context p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.services-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

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

.service-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 300px;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: 1rem;
}

.booking-section {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
}

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

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--white);
}

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.contact-form {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #d44344;
}

.value-proposition {
    padding: 5rem 2rem;
    text-align: center;
}

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

.value-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #d44344;
    text-decoration: none;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem 1.5rem;
}

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

.footer-brand,
.footer-links,
.footer-legal {
    flex: 1;
    min-width: 200px;
}

.footer-brand h4 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    opacity: 0.8;
}

.footer-links h5,
.footer-legal h5 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.5rem;
}

.footer-links a,
.footer-legal a {
    color: var(--white);
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-hero {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.about-intro {
    padding: 5rem 2rem;
}

.expertise-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

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

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.expertise-item p {
    font-size: 1rem;
    line-height: 1.7;
}

.approach-philosophy {
    padding: 5rem 2rem;
}

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

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.stats-section {
    padding: 5rem 2rem;
    background-color: var(--secondary-color);
    color: var(--white);
}

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

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.clients-section {
    padding: 5rem 2rem;
}

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

.clients-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.clients-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.clients-list li {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 200px;
    padding: 1rem 1.5rem;
    background-color: var(--light-bg);
    border-radius: 4px;
    font-size: 1.05rem;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 3rem 2rem;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

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

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.btn-service {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: #d44344;
    text-decoration: none;
}

.contact-content {
    padding: 3rem 2rem;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.info-block a {
    color: var(--accent-color);
}

.process-list {
    list-style: decimal;
    padding-left: 1.5rem;
}

.process-list li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-section {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

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

.faq-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--white);
    border-radius: 8px;
}

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

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.thanks-page {
    padding: 5rem 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--gray);
}

.thanks-details {
    background-color: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-details h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.next-steps {
    list-style: none;
    text-align: left;
}

.next-steps li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    font-size: 1.05rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-confirmation {
    margin-bottom: 2rem;
}

.service-selected {
    font-size: 1.1rem;
    padding: 1rem;
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--white);
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #d44344;
    text-decoration: none;
}

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

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
}

.legal-page {
    padding: 3rem 2rem;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.update-date {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
}

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

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

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content li {
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .testimonial-split {
        flex-direction: column;
        gap: 2rem;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .contact-split {
        flex-direction: column;
        gap: 2rem;
    }

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

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

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

    .thanks-actions a {
        width: 100%;
    }
}
