* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 35px;
}

.nav-right a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2563eb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

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

.btn-accept {
    background-color: #2563eb;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1d4ed8;
}

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

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

.hero-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-left {
    flex: 1;
}

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

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

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

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 15px 35px;
    background-color: transparent;
    color: #2563eb;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2563eb;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2563eb;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    align-items: center;
    padding: 60px 60px 60px 120px;
    gap: 80px;
    background-color: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-visual {
    flex: 0.8;
    background-color: #e8e8e8;
}

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

.services-grid {
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-grid h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 25px 20px 25px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin: 20px 25px;
}

.select-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 12px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.expertise-asymmetric {
    display: flex;
    align-items: center;
    padding: 80px 60px 80px 180px;
    gap: 100px;
    background-color: #f8f9fa;
    max-width: 1400px;
    margin: 0 auto;
}

.expertise-block {
    flex: 1.3;
}

.expertise-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.expertise-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.expertise-image {
    flex: 0.7;
    background-color: #e0e0e0;
}

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

.cta-inline {
    text-align: center;
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-inline p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d0d0d0;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 30px;
    font-weight: 700;
    color: #888;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 60px 30px 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto 40px auto;
}

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

.footer-section p,
.footer-section a {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 2;
    text-decoration: none;
    display: block;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
}

.page-hero {
    text-align: center;
    padding: 80px 60px 60px 60px;
    background-color: #f8f9fa;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-hero p {
    font-size: 20px;
    color: #6c757d;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 70px;
    max-width: 1400px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.values-section {
    padding: 80px 60px;
    background-color: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

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

.values-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.value-item {
    flex: 1;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #2563eb;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.team-approach {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.team-text {
    flex: 1.2;
}

.team-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.team-image {
    flex: 0.8;
    background-color: #e8e8e8;
}

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

.cta-centered {
    text-align: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.cta-centered h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-detailed {
    padding: 60px 60px 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

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

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

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

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

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.service-pricing {
    margin: 25px 0;
}

.service-pricing .price {
    font-size: 32px;
    font-weight: 800;
    color: #2563eb;
    margin-right: 15px;
}

.service-pricing .price-note {
    font-size: 14px;
    color: #6c757d;
}

.additional-services {
    padding: 80px 60px;
    background-color: #fafafa;
    max-width: 1400px;
    margin: 0 auto;
}

.additional-services h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
    font-weight: 800;
}

.additional-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.additional-item {
    flex: 0 1 400px;
    padding: 35px;
    background-color: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
}

.additional-item h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.contact-layout {
    display: flex;
    gap: 60px;
    padding: 60px 60px 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-map {
    flex: 1;
    background-color: #e8e8e8;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.approach-info {
    padding: 80px 60px;
    background-color: #fafafa;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-info h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.approach-info ul {
    margin: 20px 0 20px 30px;
}

.approach-info li {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.thanks-container {
    display: flex;
    align-items: center;
    gap: 70px;
    padding: 100px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 800;
}

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

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

.thanks-visual {
    flex: 1;
    background-color: #f0f0f0;
}

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

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 800;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

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

.legal-content ul {
    margin: 15px 0 15px 30px;
}

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

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

@media (max-width: 968px) {
    .nav-split {
        padding: 15px 30px;
    }

    .nav-right {
        gap: 20px;
    }

    .nav-right a {
        font-size: 14px;
    }

    .hero-split {
        flex-direction: column;
        padding: 50px 30px;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 50px 30px;
    }

    .services-grid {
        padding: 60px 30px;
    }

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

    .expertise-asymmetric {
        flex-direction: column;
        padding: 50px 30px;
    }

    .about-split,
    .team-approach,
    .service-detail {
        flex-direction: column;
        padding: 50px 30px;
    }

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

    .contact-layout {
        flex-direction: column;
        padding: 50px 30px;
    }

    .thanks-container {
        flex-direction: column;
        padding: 50px 30px;
    }

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

    .footer-content {
        flex-direction: column;
    }
}