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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    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;
    margin: 0;
}

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

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

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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 32px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

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

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

.hero {
    margin-bottom: 120px;
}

.hero-image {
    height: 85vh;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    padding: 80px 0;
}

.hero-text h1 {
    color: #ffffff;
    font-size: 64px;
    line-height: 1.2;
    font-weight: 300;
    max-width: 900px;
    letter-spacing: -1px;
}

.intro-section {
    margin-bottom: 160px;
}

.intro-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: #2a2a2a;
}

.story-section {
    margin-bottom: 160px;
}

.story-section h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.story-section p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #333;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 64px 0;
    background-color: #f0f0f0;
}

.reference-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

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

.insight-section {
    background-color: #f9f9f9;
    padding: 120px 0;
    margin-bottom: 160px;
}

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

.insight-content h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 48px;
}

.insight-content p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.approach-section {
    margin-bottom: 160px;
}

.approach-section h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 48px;
}

.approach-section > p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 80px;
}

.approach-features {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.feature-item h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
}

.feature-item p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.testimonial-section {
    margin-bottom: 160px;
    padding: 0 40px;
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto 80px;
}

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

.testimonial-author {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

.cta-section {
    margin-bottom: 80px;
}

.cta-section h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 32px;
}

.cta-section p {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
}

.services-preview {
    margin-bottom: 120px;
}

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

.service-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-image {
    width: 100%;
    height: 400px;
    margin-bottom: 32px;
    background-color: #e0e0e0;
}

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

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

.price {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 32px;
}

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

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

.form-section {
    background-color: #f9f9f9;
    padding: 120px 0;
    margin-bottom: 120px;
}

.form-section h2 {
    font-size: 48px;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 64px;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 500;
}

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

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

.disclaimer-section {
    margin-bottom: 80px;
}

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    padding: 24px;
    background-color: #f5f5f5;
    border-left: 3px solid #d0d0d0;
}

.references-section {
    margin-bottom: 120px;
}

.references-section h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.references-list a {
    color: #1a1a1a;
    text-decoration: none;
    border-bottom: 1px solid #1a1a1a;
    transition: opacity 0.3s ease;
}

.references-list a:hover {
    opacity: 0.6;
}

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

.footer-content {
    text-align: center;
}

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

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

.footer-links a:hover {
    opacity: 0.7;
}

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

@media (max-width: 768px) {
    .container,
    .container-narrow {
        padding: 0 24px;
    }

    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        flex-direction: column;
        gap: 16px;
    }

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

    .intro-text {
        font-size: 20px;
    }

    .story-section h2,
    .insight-content h2,
    .approach-section h2,
    .cta-section h2,
    .form-section h2 {
        font-size: 32px;
    }

    .story-section p,
    .insight-content p,
    .approach-section > p,
    .cta-section p {
        font-size: 17px;
    }

    .service-card h3 {
        font-size: 28px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.contact-page {
    padding: 80px 0;
}

.contact-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 64px;
}

.contact-info {
    font-size: 18px;
    line-height: 2;
}

.contact-info p {
    margin-bottom: 16px;
}

.contact-info strong {
    font-weight: 600;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-page h2 {
    font-size: 32px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 24px;
}

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

.legal-page p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 0;
}

.thanks-content h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 32px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.thanks-selected-service {
    font-size: 24px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 32px 0;
    padding: 24px;
    background-color: #f9f9f9;
    display: inline-block;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    margin-top: 32px;
    transition: background-color 0.3s ease;
}

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

.services-page {
    padding: 80px 0;
}

.services-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 64px;
}

.services-page .services-grid {
    margin-bottom: 80px;
}

.about-page {
    padding: 80px 0;
}

.about-page h1 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 64px;
}

.about-page h2 {
    font-size: 36px;
    font-weight: 400;
    margin-top: 64px;
    margin-bottom: 32px;
}

.about-page p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-image {
    width: 100%;
    height: 500px;
    margin: 64px 0;
    background-color: #e0e0e0;
}