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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2a2a2a;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 24px;
    z-index: 10000;
    display: none;
    border-top: 1px solid #333;
}

.cookie-banner.show {
    display: block;
}

.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;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 24px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.logo {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    text-decoration: none;
    color: #1a1a1a;
    text-transform: lowercase;
}

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

.nav-links a {
    text-decoration: none;
    color: #2a2a2a;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 2px;
}

.hero-minimal {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 24px;
}

.hero-text h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 32px;
    line-height: 1.1;
}

.hero-text p {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.6;
}

.intro-sparse {
    padding: 160px 48px;
    background: #fff;
}

.container-narrow {
    max-width: 760px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

.intro-sparse h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.intro-sparse p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.story-section {
    padding: 120px 0;
    background: #f5f5f5;
}

.story-section .container-wide {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    background: #ddd;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h3 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 36px;
    letter-spacing: -0.5px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.insight-minimal {
    padding: 160px 48px;
    background: #fff;
}

.insight-minimal h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.insight-minimal p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.image-break {
    height: 500px;
    position: relative;
    overflow: hidden;
}

.image-full {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.benefits-clean {
    padding: 160px 48px;
    background: #f5f5f5;
}

.benefits-clean h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    letter-spacing: -0.5px;
}

.benefit-item {
    margin-bottom: 64px;
}

.benefit-item h4 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.benefit-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.testimonials-minimal {
    padding: 160px 48px;
    background: #fff;
}

.testimonials-minimal blockquote {
    margin-bottom: 64px;
    border-left: none;
    padding: 0;
}

.testimonials-minimal p {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #2a2a2a;
    margin-bottom: 16px;
    font-weight: 300;
}

.testimonials-minimal cite {
    font-size: 15px;
    color: #888;
    font-style: normal;
    letter-spacing: 0.5px;
}

.services-overview {
    padding: 160px 48px;
    background: #f5f5f5;
}

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

.services-overview > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 80px;
    color: #4a4a4a;
}

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

.service-card {
    background: #fff;
    padding: 48px;
    border: 1px solid #e0e0e0;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 24px;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.form-section {
    padding: 160px 48px;
    background: #fff;
}

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

.form-section > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 64px;
    color: #4a4a4a;
}

.minimal-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #2a2a2a;
}

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

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

.btn-primary {
    padding: 18px 48px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #333;
}

.disclaimer-section {
    padding: 80px 48px;
    background: #f5f5f5;
}

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

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

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

.footer-brand h3 {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: lowercase;
}

.footer-brand p {
    font-size: 14px;
    color: #999;
    line-height: 1.6;
}

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

.footer-column h4 {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 400;
    color: #999;
}

.footer-column a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 12px;
    color: #666;
    letter-spacing: 0.5px;
}

.success-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 80px 48px;
}

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

.success-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.success-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.success-detail {
    background: #fff;
    padding: 32px;
    margin: 48px 0;
    border: 1px solid #e0e0e0;
}

.success-detail strong {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.success-detail span {
    font-size: 18px;
    color: #2a2a2a;
}

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-top: 32px;
}

.btn-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.about-hero {
    padding: 200px 48px 120px;
    background: #f5f5f5;
}

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

.about-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.about-story {
    padding: 120px 48px;
    background: #fff;
}

.about-story h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.about-story p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #4a4a4a;
}

.services-hero {
    padding: 200px 48px 80px;
    background: #f5f5f5;
}

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

.services-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-list {
    padding: 120px 48px;
    background: #fff;
}

.contact-hero {
    padding: 200px 48px 80px;
    background: #f5f5f5;
}

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

.contact-hero p {
    font-size: 20px;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-details {
    padding: 120px 48px;
    background: #fff;
}

.contact-details h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 64px;
    letter-spacing: -0.5px;
}

.detail-item {
    margin-bottom: 48px;
}

.detail-item h3 {
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #999;
}

.detail-item p {
    font-size: 18px;
    line-height: 1.8;
    color: #2a2a2a;
}

.legal-page {
    padding: 200px 48px 120px;
    background: #fff;
}

.legal-page h1 {
    font-size: 56px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 64px;
}

.legal-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 64px;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.legal-page h3 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.legal-page ul {
    margin: 20px 0 20px 32px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 42px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .nav-content {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
        font-size: 12px;
    }

    .story-section .container-wide {
        flex-direction: column;
        gap: 40px;
    }

    .intro-sparse,
    .insight-minimal,
    .benefits-clean,
    .testimonials-minimal,
    .services-overview,
    .form-section {
        padding: 80px 24px;
    }

    h2 {
        font-size: 36px !important;
    }

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

    .footer-links {
        gap: 40px;
    }
}