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

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

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

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: 0.5px;
}

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

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

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

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 6px 12px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 72px;
    line-height: 1.1;
    font-weight: 300;
    margin-bottom: 32px;
    color: #1a1a1a;
}

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

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

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

.intro-statement {
    background-color: #1a1a1a;
    color: #fff;
    padding: 140px 48px;
}

.statement-content {
    max-width: 1000px;
    margin: 0 auto;
}

.large-text {
    font-size: 42px;
    line-height: 1.4;
    font-weight: 300;
}

.insight-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 48px;
}

.insight-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background-color: #f0f0f0;
}

.insight-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 32px;
    line-height: 1.3;
}

.insight-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #4a4a4a;
}

.story-section {
    background-color: #f5f5f5;
    padding: 140px 48px;
}

.story-container {
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.section-title {
    font-size: 52px;
    font-weight: 300;
    margin-bottom: 80px;
    text-align: center;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    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: 24px;
    font-weight: 500;
    margin: 28px 28px 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    margin: 0 28px 20px;
    color: #666;
}

.price {
    font-size: 32px;
    font-weight: 300;
    color: #1a1a1a;
    margin: 24px 28px;
}

.cta-btn {
    width: calc(100% - 56px);
    margin: 0 28px 28px;
    padding: 16px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    background-color: #2c2c2c;
    color: #fff;
    padding: 120px 48px;
}

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

.trust-content h2 {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 36px;
}

.trust-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #d0d0d0;
}

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

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

.form-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
    line-height: 1.6;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #4a4a4a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    background-color: #fff;
    font-family: inherit;
}

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

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

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

.disclaimer-section {
    background-color: #f9f9f9;
    padding: 60px 48px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-note {
    font-size: 13px;
    color: #999;
}

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

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

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

@media (max-width: 768px) {
    .nav-container {
        padding: 20px 24px;
    }

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-minimal {
        padding: 80px 24px 60px;
    }

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

    .hero-subtitle {
        font-size: 20px;
    }

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

    .insight-block,
    .services-preview,
    .form-section {
        padding: 80px 24px;
    }

    .section-title {
        font-size: 36px;
    }
}