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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a7c94;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.ad-disclosure {
    background-color: var(--bg-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-left .logo {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: var(--primary-color);
}

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

.hero-text {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-text p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    height: 600px;
    background-color: var(--bg-light);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-block {
    display: flex;
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.intro-left {
    flex: 1;
    padding-right: 40px;
}

.intro-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.intro-right {
    flex: 1;
    padding-left: 40px;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-right p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.trust-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
    text-align: center;
}

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-overview {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
}

.service-split {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-content ul li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

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

.price {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-select {
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: var(--secondary-color);
}

.service-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--bg-light);
}

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

.form-section {
    padding: 100px 60px;
    background-color: var(--bg-white);
}

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

.form-container h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--text-dark);
    text-align: center;
}

.form-container > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

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

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.submit-button {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.testimonials-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.testimonials-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--text-dark);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 60px 20px;
}

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column p,
.footer-column a {
    font-size: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

.footer-column a {
    display: block;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.disclaimer {
    padding: 30px 0;
    border-top: 1px solid #444;
    border-bottom: 1px solid #444;
    margin-bottom: 20px;
}

.disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 24px;
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

.cookie-accept {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.cookie-accept:hover {
    background-color: var(--secondary-color);
}

.cookie-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-hero {
    padding: 100px 60px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.page-hero p {
    font-size: 22px;
    color: var(--text-light);
}

.about-split {
    display: flex;
    padding: 100px 60px;
    background-color: var(--bg-white);
    gap: 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.values-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
    text-align: center;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: var(--text-dark);
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    max-width: 300px;
    text-align: center;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-split {
    display: flex;
    padding: 100px 60px;
    background-color: var(--bg-white);
    gap: 60px;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    width: 100%;
    height: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
}

.team-section {
    padding: 100px 60px;
    background-color: var(--bg-light);
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 24px;
    text-align: center;
    color: var(--text-dark);
}

.team-section > p {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

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

.team-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 40px;
    background-color: var(--bg-white);
    border-radius: 8px;
    text-align: center;
}

.team-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.team-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-detail {
    padding: 80px 60px;
    background-color: var(--bg-white);
}

.service-detail-card {
    display: flex;
    margin-bottom: 80px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    padding: 60px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-detail-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.service-price-block {
    margin: 30px 0;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 6px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    display: block;
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.price-amount {
    font-size: 38px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-color: var(--bg-light);
}

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

.services-cta {
    padding: 80px 60px;
    background-color: var(--primary-color);
    text-align: center;
}

.services-cta h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--bg-white);
}

.services-cta p {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.services-cta .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.services-cta .cta-primary:hover {
    background-color: var(--bg-light);
}

.contact-split {
    display: flex;
    padding: 100px 60px;
    background-color: var(--bg-white);
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-detail p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    margin-top: 50px;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

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

.thanks-section {
    padding: 140px 60px;
    background-color: var(--bg-light);
    text-align: center;
    min-height: 600px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.thanks-content p {
    font-size: 19px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirmation {
    margin: 40px 0;
    padding: 24px;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.service-confirmation p {
    font-size: 17px;
    color: var(--text-dark);
}

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

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin: 16px 0 16px 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-page a:hover {
    color: var(--secondary-color);
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
        padding: 20px 30px;
    }

    .header-right {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .hero-text {
        padding: 50px 30px;
    }

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

    .hero-text p {
        font-size: 17px;
    }

    .hero-image {
        height: 400px;
    }

    .intro-block,
    .about-split,
    .approach-split,
    .contact-split {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-left,
    .intro-right {
        padding: 0;
    }

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

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

    .service-content,
    .service-detail-content {
        padding: 40px 30px;
    }

    .trust-section,
    .services-overview,
    .form-section,
    .testimonials-section,
    .values-section,
    .team-section,
    .services-detail,
    .services-cta {
        padding: 60px 30px;
    }

    .page-hero {
        padding: 60px 30px 40px;
    }

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

    .footer {
        padding: 40px 30px 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }

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

    .legal-page {
        padding: 60px 30px;
    }

    .thanks-section {
        padding: 80px 30px;
    }

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