* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

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

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

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

.btn-accept {
    background-color: #2ecc71;
    color: white;
}

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 12px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-right {
    flex: 1;
    background-color: #e8eef3;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #34495e;
}

.insight-split, .method-split, .philosophy-split, .team-split, .approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.insight-left, .method-right, .philosophy-left, .team-right, .approach-left {
    flex: 1;
    background-color: #dce4eb;
}

.insight-left img, .method-right img, .philosophy-left img, .team-right img, .approach-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-right, .method-left, .philosophy-right, .team-left, .approach-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-right h2, .method-left h2, .philosophy-right h2, .team-left h2, .approach-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.insight-right p, .method-left p, .philosophy-right p, .team-left p, .approach-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #4a5568;
}

.cta-text {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 16px;
    display: inline-block;
    transition: color 0.3s ease;
}

.cta-text:hover {
    color: #2980b9;
}

.services-preview {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8eef3;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 24px 16px 24px;
    color: #4a5568;
}

.service-card .price {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 24px 24px 24px;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    background-color: #f8f9fa;
}

.cta-left {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-right {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.inline-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.inline-form input, .inline-form select {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px 40px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

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

.footer-section p, .footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: #b0b0b0;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
    max-width: 1400px;
    margin: 0 auto;
}

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
}

.value-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.value-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.services-intro {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.services-intro h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.service-detail-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
}

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

.detail-left, .detail-right {
    flex: 1;
}

.detail-left {
    background-color: #dce4eb;
}

.detail-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-split.reverse .detail-left {
    padding: 60px;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-split.reverse .detail-right {
    background-color: #dce4eb;
    padding: 0;
}

.service-detail-split.reverse .detail-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-right h2, .service-detail-split.reverse .detail-left h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.detail-right p, .service-detail-split.reverse .detail-left p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
}

.services-cta {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 40px auto;
    min-height: 700px;
}

.contact-left {
    flex: 1;
    padding: 80px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-left h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-left p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-info {
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.info-item {
    margin-bottom: 24px;
}

.info-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
    color: #2c3e50;
}

.info-item p {
    margin: 0;
    font-size: 15px;
    color: #4a5568;
}

.contact-right {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
}

.contact-form-container {
    width: 100%;
}

.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

.form-group label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #2c3e50;
    font-weight: 600;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.location-info {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.location-info h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.location-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    max-width: 900px;
    margin: 120px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a5568;
}

.service-confirmation {
    font-weight: 600;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #34495e;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

.next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.next-steps h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 32px;
    background-color: #f8f9fa;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #2c3e50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

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

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-split, .insight-split, .method-split, .cta-split, .about-hero-split,
    .philosophy-split, .team-split, .approach-split, .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

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

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-direction: column;
        gap: 16px;
    }

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

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

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