* {
    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: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 10000;
}

.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: 20px;
}

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

.cookie-actions {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: white;
}

.btn-accept:hover {
    background: #229954;
}

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 80px 8%;
    background: #f8f9fa;
}

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.cta-primary {
    background: #27ae60;
    color: white;
}

.cta-primary:hover {
    background: #229954;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.insight-split {
    display: flex;
    align-items: stretch;
}

.insight-split.reverse {
    flex-direction: row-reverse;
}

.content-block {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.value-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 80px 5%;
    gap: 40px;
    background: #f8f9fa;
}

.value-card {
    flex: 1 1 280px;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #4a4a4a;
}

.testimonial-split {
    display: flex;
    align-items: stretch;
    background: #2c3e50;
    color: white;
}

.testimonial-content {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content blockquote {
    font-size: 28px;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-visual {
    flex: 1;
}

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

.services-showcase {
    padding: 80px 5%;
    background: white;
}

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

.services-intro h2 {
    font-size: 48px;
    margin-bottom: 20px;
}

.services-intro p {
    font-size: 20px;
    color: #4a4a4a;
}

.service-split {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    gap: 60px;
}

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

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

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

.service-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price {
    font-size: 36px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0;
}

.select-service {
    padding: 14px 32px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.commitment-split {
    display: flex;
    padding: 80px 8%;
    gap: 80px;
    background: #f8f9fa;
    align-items: center;
}

.commitment-text {
    flex: 1;
}

.commitment-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.commitment-text p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.commitment-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.stat-number {
    font-size: 52px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 18px;
    color: #4a4a4a;
}

.form-section {
    padding: 100px 5%;
    background: white;
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 40px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    padding: 16px 40px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.final-cta-split {
    display: flex;
    align-items: stretch;
    background: #2c3e50;
    color: white;
}

.final-cta-content {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.final-cta-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.final-cta-visual {
    flex: 1;
}

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

.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
}

.footer-section a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    padding: 16px 32px;
    background: #27ae60;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.page-hero {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
    padding: 80px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.about-visual {
    flex: 1;
}

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

.values-section {
    padding: 80px 5%;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 280px;
    padding: 40px;
    background: white;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
}

.experience-section {
    padding: 80px 5%;
}

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

.experience-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
}

.experience-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-split {
    display: flex;
    align-items: stretch;
    padding: 80px 5%;
    gap: 60px;
}

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

.service-detail-visual {
    flex: 1;
    min-height: 500px;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.service-detail-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin: 32px 0;
}

.services-cta {
    padding: 80px 5%;
    background: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-cta p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 80px;
    align-items: center;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #27ae60;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.8;
}

.contact-item a {
    color: #27ae60;
    text-decoration: none;
}

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

.contact-visual {
    flex: 1;
}

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

.contact-cta {
    padding: 80px 5%;
    background: #f8f9fa;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.thanks-section {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    min-height: 600px;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-content #service-confirmation {
    font-weight: 600;
    color: #27ae60;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

.legal-page h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 40px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-page a {
    color: #27ae60;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 968px) {
    .hero-split,
    .insight-split,
    .testimonial-split,
    .service-split,
    .service-detail-split,
    .commitment-split,
    .final-cta-split,
    .about-split,
    .contact-split,
    .thanks-section {
        flex-direction: column;
    }

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

    .hero-left h1,
    .page-hero h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .content-block h2,
    .service-detail-content h2,
    .about-content h2,
    .contact-info h2,
    .contact-cta h2,
    .services-cta h2,
    .final-cta-content h2,
    .commitment-text h2 {
        font-size: 32px;
    }

    .services-intro h2,
    .values-section h2,
    .experience-content h2,
    .legal-page h1 {
        font-size: 36px;
    }

    .service-details h3 {
        font-size: 28px;
    }

    .nav-links {
        gap: 20px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta a {
        padding: 12px 24px;
        font-size: 14px;
    }

    .hero-left,
    .content-block,
    .testimonial-content,
    .service-detail-split,
    .commitment-split,
    .final-cta-content,
    .about-content,
    .contact-split,
    .thanks-section {
        padding: 60px 5%;
    }

    .service-visual,
    .service-detail-visual {
        min-height: 300px;
    }

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

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

    .hero-left h1 {
        font-size: 28px;
    }

    .value-grid,
    .values-grid {
        flex-direction: column;
    }

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

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