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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background: #ffffff;
}

.ad-notice {
    background: #f8f8f8;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: opacity 0.3s;
}

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

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

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

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

.hero-subtitle {
    font-size: 24px;
    color: #666;
    font-weight: 300;
}

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

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

.intro-statement {
    padding: 120px 8%;
    background: #fafafa;
}

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

.large-text {
    font-size: 32px;
    line-height: 1.5;
    font-weight: 300;
    text-align: center;
}

.story-section {
    display: flex;
    padding: 140px 8%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 100px;
    align-items: center;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 40px;
    line-height: 1.2;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #444;
}

.story-visual {
    flex: 1;
    background-color: #f5f5f5;
}

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

.insight-block {
    padding: 120px 8%;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-block h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 60px;
}

.insight-item {
    flex: 1;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.insight-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #c0c0c0;
}

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

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

.services-header h2 {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 20px;
    color: #666;
}

.services-showcase {
    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 {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 24px;
}

.service-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.btn-select {
    background: #2c2c2c;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #000000;
}

.testimonials {
    padding: 120px 8%;
    background: #fafafa;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
}

.testimonial {
    margin-bottom: 60px;
    text-align: center;
}

.testimonial p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #333;
}

.testimonial cite {
    font-size: 16px;
    color: #888;
    font-style: normal;
}

.cta-form-section {
    padding: 140px 8%;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.form-container > p {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 18px;
    font-size: 16px;
    border: 1px solid #ddd;
    font-family: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 20px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #000000;
}

.disclaimer {
    padding: 80px 8%;
    background: #f8f8f8;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 8% 40px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-section p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    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: 40px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.btn-accept {
    background: #ffffff;
    color: #2c2c2c;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

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

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

    .service-card {
        flex-direction: column;
    }

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

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

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