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

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.hidden {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.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-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.btn-primary {
    background-color: #ffffff;
    color: #1a1a1a;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 12px 32px;
    font-size: 15px;
    font-weight: 500;
    border: 1px solid #ffffff;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.ad-disclosure {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.header-minimal {
    padding-top: 40px;
}

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

.brand {
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: lowercase;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.6;
}

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

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

.hero-content h1 {
    font-size: 64px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 32px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    color: #666;
    letter-spacing: 0.5px;
}

.hero-image-wrapper {
    width: 100%;
    height: 600px;
    background-color: #f5f5f5;
}

.hero-image {
    width: 100%;
    height: 100%;
}

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

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

.large-text {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.approach-section {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
}

.approach-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #f5f5f5;
}

.section-image {
    width: 100%;
    height: 100%;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 48px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.approach-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #333;
}

.text-link {
    display: inline-block;
    font-size: 16px;
    margin-top: 24px;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.text-link:hover {
    opacity: 0.6;
}

.philosophy-block {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 120px 48px;
    margin: 160px 0;
}

.philosophy-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.large-quote {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.5;
    font-style: italic;
    letter-spacing: 0.5px;
}

.services-intro {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 48px;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

.services-header h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.section-lead {
    font-size: 20px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-minimal {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    background-color: #f5f5f5;
    height: 400px;
}

.service-image {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 32px;
}

.service-price {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.btn-select-service {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 15px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.form-section {
    max-width: 800px;
    margin: 160px auto;
    padding: 0 48px;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 48px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

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

.trust-section {
    background-color: #f9f9f9;
    padding: 100px 48px;
    margin: 160px 0;
}

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

.trust-content h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.testimonials {
    display: flex;
    gap: 60px;
}

.testimonial {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-left: 3px solid #1a1a1a;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
    color: #333;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 500;
    color: #666;
    letter-spacing: 0.5px;
}

.disclaimer-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 48px;
}

.disclaimer-content {
    background-color: #f5f5f5;
    padding: 32px;
    border-radius: 4px;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

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

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

.footer-brand {
    flex: 1;
}

.brand-name {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: 15px;
    color: #999;
    font-weight: 300;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-column a {
    font-size: 15px;
    color: #ccc;
    transition: color 0.3s ease;
}

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

.footer-column p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

.email-text {
    font-family: monospace;
    font-size: 14px;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

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

    .nav-links {
        gap: 24px;
    }

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

    .hero-image-wrapper {
        height: 400px;
    }

    .large-text {
        font-size: 22px;
    }

    .approach-grid {
        flex-direction: column;
        gap: 40px;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

    .testimonials {
        flex-direction: column;
    }

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

    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}