* {
    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: #2c2c2c;
    background: #ffffff;
}

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

.main-nav {
    padding: 30px 60px;
    background: #ffffff;
}

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

.logo {
    font-size: 22px;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #1a1a1a;
}

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

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

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

.hero-minimal {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 60px 80px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    max-width: 900px;
    margin-bottom: 80px;
}

.hero-content h1 {
    font-size: 82px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    color: #5a5a5a;
    font-weight: 300;
    max-width: 600px;
}

.hero-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

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

.intro-section {
    padding: 140px 60px;
    background: #fafafa;
}

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

.intro-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
}

.intro-text p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 25px;
}

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

.services-preview h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

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

.service-card {
    flex: 0 1 calc(33.333% - 30px);
    min-width: 320px;
    background: #ffffff;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 35px;
}

.service-info h3 {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 15px;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.select-service-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-service-btn:hover {
    background: #3a3a3a;
}

.form-section {
    padding: 120px 60px;
    background: #f5f5f5;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 60px;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 15px;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: #4a4a4a;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background: #fafafa;
}

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

.submit-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background: #3a3a3a;
}

.trust-section {
    padding: 120px 60px;
    background: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.testimonials {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    flex: 0 1 450px;
    padding: 40px;
    background: #fafafa;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: #888;
}

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: #252525;
    border-left: 3px solid #444;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #ffffff;
    padding: 25px;
    display: none;
    z-index: 1000;
}

.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: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

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

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

.thanks-container h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    max-width: 600px;
}

.thanks-service {
    background: #fafafa;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 500px;
}

.thanks-service strong {
    display: block;
    font-size: 15px;
    color: #888;
    margin-bottom: 8px;
}

.thanks-service span {
    font-size: 24px;
    color: #1a1a1a;
}

.back-home-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    transition: background 0.3s;
}

.back-home-btn:hover {
    background: #3a3a3a;
}

@media (max-width: 768px) {
    .main-nav {
        padding: 20px 30px;
    }

    .nav-links {
        gap: 25px;
    }

    .hero-minimal {
        padding: 0 30px 50px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-section,
    .services-preview,
    .form-section,
    .trust-section {
        padding: 80px 30px;
    }

    .services-grid {
        gap: 30px;
    }

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

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

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