* {
    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.7;
    color: #2a2a2a;
    background: #fafafa;
}

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

.nav-minimal {
    background: #fff;
    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: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.hero-minimal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
}

.hero-content {
    max-width: 800px;
    margin-bottom: 60px;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
    font-weight: 400;
}

.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 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

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

.lead-text {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.intro-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.services-preview {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    background: #fff;
}

.services-preview h2 {
    font-size: 3rem;
    margin-bottom: 80px;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background: #fafafa;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 280px;
    background-color: #e8e8e8;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    padding: 0 30px;
    font-weight: 600;
}

.service-card p {
    color: #666;
    margin-bottom: 15px;
    padding: 0 30px;
    font-size: 1rem;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 10px;
    margin-bottom: 25px;
}

.btn-service {
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 16px 30px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 30px 30px;
    align-self: flex-start;
}

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

.philosophy-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.content-wide {
    display: flex;
    gap: 80px;
    align-items: center;
}

.philosophy-content {
    flex: 1;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.philosophy-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.philosophy-image {
    flex: 1;
    height: 500px;
    background-color: #e8e8e8;
    overflow: hidden;
}

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

.form-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    background: #fff;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 0.95rem;
}

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

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

.btn-submit {
    width: 100%;
    background: #2a2a2a;
    color: #fff;
    border: none;
    padding: 18px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
    font-weight: 500;
}

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

.testimonials-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.testimonial {
    margin-bottom: 50px;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #2a2a2a;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    color: #666;
    font-size: 1rem;
}

.disclaimer-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    background: #f5f5f5;
}

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

footer {
    background: #2a2a2a;
    color: #fff;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: #aaa;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 25px 20px;
    z-index: 2000;
    display: none;
}

.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 {
    flex: 1;
    font-size: 0.95rem;
    color: #666;
}

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

.btn-cookie {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #2a2a2a;
    color: #fff;
}

.btn-cookie:hover {
    background: #1a1a1a;
}

.btn-cookie.secondary {
    background: #f0f0f0;
    color: #2a2a2a;
}

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

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 40px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
}

.btn-back {
    display: inline-block;
    background: #2a2a2a;
    color: #fff;
    padding: 16px 40px;
    text-decoration: none;
    margin-top: 40px;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: #1a1a1a;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 40px 120px;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-content p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info {
    background: #f5f5f5;
    padding: 40px;
    margin-top: 40px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 15px;
}

.contact-info strong {
    color: #2a2a2a;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

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

    .philosophy-image {
        height: 300px;
    }

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

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

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

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

    .nav-links {
        gap: 20px;
    }

    .services-preview h2 {
        font-size: 2rem;
    }
}