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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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;
    min-width: 300px;
}

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

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

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    border: 1px solid #ddd;
    padding: 4px 8px;
    border-radius: 3px;
    background-color: #f9f9f9;
}

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

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

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-left p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 540px;
}

.btn-hero {
    display: inline-block;
    padding: 16px 40px;
    background-color: #d4a574;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.btn-hero:hover {
    background-color: #c29563;
}

.hero-right {
    flex: 1;
    background-color: #e8e4df;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.intro-left {
    flex: 1;
    background-color: #f0ebe6;
    overflow: hidden;
    border-radius: 8px;
}

.intro-left img {
    width: 100%;
    height: 480px;
    display: block;
}

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

.intro-right h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-right p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.services-grid {
    padding: 100px 60px;
    background-color: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-header p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: 360px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background-color: #e8e4df;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 25px 15px;
    color: #1a1a1a;
}

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

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #d4a574;
    margin: 0 25px 20px;
}

.btn-service {
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    padding: 14px 25px;
    margin: 0 25px 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.form-section {
    padding: 100px 60px;
    background-color: #f8f6f3;
}

.form-section.hidden {
    display: none;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

.selected-service-display {
    margin-bottom: 30px;
    font-size: 16px;
    color: #666;
}

.selected-service-display strong {
    color: #d4a574;
}

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

.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: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #d4a574;
    color: #ffffff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 100px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: rgba(255,255,255,0.05);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #d4a574;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial .author {
    font-size: 14px;
    color: #d4a574;
    font-weight: 600;
}

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

.footer-col p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #d4a574;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.footer-bottom .disclaimer {
    font-size: 11px;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-primary,
.btn-secondary {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #d4a574;
    color: #ffffff;
}

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

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

.btn-secondary:hover {
    background-color: #333;
}

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

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

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

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

    .intro-section {
        flex-direction: column;
        padding: 60px 20px;
        gap: 40px;
    }

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

    .service-card {
        width: 100%;
    }

    .trust-section {
        padding: 60px 20px;
    }

    .testimonials {
        flex-direction: column;
    }

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

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