* {
    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: #1a1a1a;
    background-color: #fafafa;
}

.main-nav {
    background-color: #ffffff;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f9f9f9;
}

.hero-minimal {
    padding: 8rem 3rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    margin-bottom: 4rem;
}

.hero-minimal h1 {
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #666;
    font-weight: 300;
}

.hero-image-container {
    width: 100%;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.intro-section {
    padding: 6rem 3rem;
    background-color: #ffffff;
}

.content-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.large-text {
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 300;
    color: #333;
}

.services-preview {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 4rem;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    width: 380px;
    background-color: #ffffff;
    padding: 0;
    border: 1px solid #e0e0e0;
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 2rem 2rem 1rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #666;
    margin: 0 2rem 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 300;
    margin: 1.5rem 2rem;
    color: #1a1a1a;
}

.btn-select-service {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem;
    padding: 1rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.form-section {
    padding: 8rem 3rem;
    background-color: #ffffff;
}

.form-section h2 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-size: 0.9rem;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.philosophy-section {
    padding: 6rem 3rem;
    background-color: #f5f5f5;
}

.philosophy-section h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.philosophy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.5rem;
}

.info-section {
    padding: 6rem 3rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 4rem;
}

.info-block h3 {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: #ccc;
}

.disclaimer-section {
    padding: 4rem 3rem;
    background-color: #f9f9f9;
}

.disclaimer {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 4rem 3rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #666;
    font-size: 0.9rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #ddd;
    padding: 1.5rem;
    z-index: 2000;
    display: none;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
    color: #333;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.8rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
}

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

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

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

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

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 3rem;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-content .selected-service {
    font-weight: 500;
    color: #1a1a1a;
}

.btn-back {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 0.2s;
}

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

.legal-page {
    padding: 6rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    font-weight: 400;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #444;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #444;
}

.contact-page {
    padding: 6rem 3rem;
}

.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.contact-image {
    flex: 1;
    height: 600px;
    background-color: #f0f0f0;
}

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

@media (max-width: 1024px) {
    .hero-minimal h1 {
        font-size: 3.5rem;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-card {
        width: 45%;
    }

    .info-container {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 1.5rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-minimal {
        padding: 4rem 1.5rem 2rem;
    }

    .hero-minimal h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .large-text {
        font-size: 1.3rem;
    }

    .services-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-image {
        height: 400px;
    }
}