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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
}

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

.minimal-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 80px 40px;
    background-color: #fafafa;
}

.nav-brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: color 0.3s;
}

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

.hero-minimal {
    padding: 120px 80px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-content h1 {
    font-size: 68px;
    font-weight: 300;
    line-height: 1.2;
    max-width: 900px;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    color: #555;
    max-width: 700px;
    line-height: 1.5;
}

.hero-visual {
    width: 100%;
    height: 600px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-space {
    padding: 100px 80px;
    background-color: #ffffff;
}

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

.intro-text p {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.7;
    color: #333;
    text-align: center;
}

.service-preview {
    padding: 120px 80px;
    background-color: #fafafa;
}

.service-preview h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.service-cards-minimal {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card-image {
    width: 100%;
    height: 450px;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 38px;
    font-weight: 300;
    letter-spacing: -0.5px;
}

.service-card p {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
    max-width: 700px;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin-top: 20px;
}

.select-service-btn {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: fit-content;
    margin-top: 10px;
}

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

.select-service-btn.selected {
    background-color: #555;
}

.form-section {
    padding: 120px 80px;
    background-color: #ffffff;
}

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

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.form-intro {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

#selected-service-display {
    font-weight: 400;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    font-size: 16px;
    font-weight: 300;
    font-family: 'Helvetica Neue', Arial, sans-serif;
}

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

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

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

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.trust-section {
    padding: 120px 80px;
    background-color: #f5f5f5;
}

.trust-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -1px;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 900px;
}

.trust-point h3 {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 15px;
}

.trust-point p {
    font-size: 18px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 14px;
    font-weight: 300;
    color: #aaa;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    transition: color 0.3s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 30px;
    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;
}

.cookie-content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.cookie-btn.accept:hover {
    background-color: #e0e0e0;
}

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

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

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

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

.thanks-content h1 {
    font-size: 58px;
    font-weight: 300;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.thanks-content p {
    font-size: 20px;
    font-weight: 300;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.thanks-service-info {
    font-size: 22px;
    font-weight: 400;
    margin: 40px 0;
    color: #1a1a1a;
}

.back-btn {
    display: inline-block;
    margin-top: 40px;
    padding: 18px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

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

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

    .nav-links {
        gap: 20px;
    }

    .hero-minimal {
        padding: 60px 20px 40px;
    }

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

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

    .intro-space {
        padding: 60px 20px;
    }

    .intro-text p {
        font-size: 20px;
    }

    .service-preview {
        padding: 60px 20px;
    }

    .service-preview h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .service-card h3 {
        font-size: 28px;
    }

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

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

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

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

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