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

.ad-disclosure {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-left .logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

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

.nav-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 580px;
}

.hero-content {
    flex: 1;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f9fafb;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.hero-image {
    flex: 1;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-narrow {
    max-width: 680px;
    margin: 80px auto;
    padding: 0 6%;
    text-align: center;
}

.intro-narrow h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.services-split {
    padding: 60px 0;
    background-color: #ffffff;
}

.service-block {
    display: flex;
    margin-bottom: 0;
    min-height: 480px;
}

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

.service-image-left,
.service-image-right {
    flex: 1;
    background-color: #f0f0f0;
    overflow: hidden;
}

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

.service-text-right,
.service-text-left {
    flex: 1;
    padding: 60px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-text-right h3,
.service-text-left h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 600;
}

.service-text-right p,
.service-text-left p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-top: 12px;
    margin-bottom: 24px;
}

.btn-service {
    padding: 14px 28px;
    background-color: #34495e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.trust-block {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
    min-height: 420px;
}

.trust-content {
    flex: 1;
    padding: 60px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    opacity: 0.95;
}

.trust-image {
    flex: 1;
    background-color: #1a252f;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.form-section {
    padding: 80px 6%;
    max-width: 720px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
    font-size: 15px;
}

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer {
    padding: 40px 6%;
    background-color: #f9fafb;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
}

.disclaimer p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    text-align: center;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 6%;
    background-color: #1a1a1a;
    color: #ffffff;
    gap: 40px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e0e0e0;
    padding: 24px 6%;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #2c3e50;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

.btn-reject:hover {
    background-color: #d0d0d0;
}

.btn-link {
    color: #2c3e50;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.btn-link:hover {
    color: #1a252f;
}

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

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

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

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

.thanks-content .btn-home {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.thanks-content .btn-home:hover {
    background-color: #1a252f;
}

.page-header {
    padding: 80px 6% 40px;
    background-color: #f9fafb;
    border-bottom: 1px solid #e8e8e8;
}

.page-header h1 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 17px;
    color: #4a4a4a;
    max-width: 720px;
}

.page-content {
    padding: 60px 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.page-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.contact-info-block {
    display: flex;
    gap: 60px;
    padding: 60px 6%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-column {
    flex: 1;
}

.contact-column h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.contact-column .email-display {
    font-weight: 500;
    color: #2c3e50;
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 16px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-content {
        padding: 50px 5%;
    }

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

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

    .trust-block {
        flex-direction: column;
    }

    .footer-split {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-info-block {
        flex-direction: column;
        gap: 40px;
    }
}