* {
    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;
}

.ad-notice {
    background: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #5a5a5a;
    border-bottom: 1px solid #e0e0e0;
}

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

.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: #1a1a1a;
    text-decoration: none;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 80px 60px 40px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 40px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #333333;
}

.hero-image {
    flex: 1;
    background: #f5f5f5;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    align-items: center;
}

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

.approach-image {
    flex: 1;
    background: #f0f0f0;
    padding: 40px;
}

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

.approach-content {
    flex: 1;
    padding: 60px 80px;
}

.approach-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.approach-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.services-section {
    background: #fafafa;
    padding: 100px 40px;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-intro h2 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0a0a0a;
}

.section-intro p {
    font-size: 18px;
    color: #4a4a4a;
}

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

.service-card {
    background: #ffffff;
    width: calc(33.333% - 27px);
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #e8e8e8;
}

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

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 25px 20px;
}

.select-service {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    margin: 0 25px 25px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #333333;
}

.form-section {
    padding: 100px 40px;
    background: #ffffff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0a0a0a;
}

.form-intro p {
    font-size: 17px;
    color: #4a4a4a;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a2a;
}

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

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

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #333333;
}

.trust-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    align-items: center;
}

.trust-content {
    flex: 1;
    padding: 60px 80px;
}

.trust-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    background: #f0f0f0;
    padding: 40px;
}

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

.disclaimer-section {
    background: #f8f9fa;
    padding: 40px;
    text-align: center;
    max-width: 1000px;
    margin: 80px auto;
    border-radius: 8px;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #5a5a5a;
}

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

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

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

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-column h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 10px;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #8a8a8a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #1a1a1a;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2a2a2a;
}

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

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

.btn-accept {
    background: #1a1a1a;
    color: #ffffff;
}

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

.btn-reject {
    background: #f0f0f0;
    color: #2a2a2a;
}

.btn-reject:hover {
    background: #e0e0e0;
}

.cookie-actions a {
    color: #5a5a5a;
    font-size: 14px;
    text-decoration: underline;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

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

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #0a0a0a;
}

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

.thanks-content a {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 20px;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #333333;
}

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

.page-content h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #0a0a0a;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 50px 0 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 35px 0 15px;
    color: #2a2a2a;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 10px;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

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

.contact-info p {
    font-size: 16px;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 12px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 60px 0;
}

.service-item {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 40px;
}

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

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

.service-item .price {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 20px;
}

@media (max-width: 968px) {
    .hero-split,
    .approach-split,
    .trust-split {
        flex-direction: column;
    }

    .hero-image {
        height: 400px;
        width: 100%;
    }

    .hero-content,
    .approach-content,
    .trust-content {
        padding: 40px 30px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .nav-container {
        padding: 15px 30px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

@media (max-width: 600px) {
    .service-card {
        width: 100%;
    }

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

    .section-intro h2 {
        font-size: 34px;
    }

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