* {
    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.7;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
}

.brand {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a4a4a;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

.hero-minimal {
    padding: 120px 0 80px;
    background: #fafafa;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 80px;
    text-align: center;
    padding: 0 32px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #6a6a6a;
    line-height: 1.6;
    font-weight: 400;
}

.hero-image-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e5e5e5;
    object-fit: cover;
}

.intro-section {
    padding: 140px 0;
}

.intro-section h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
}

.intro-section p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 28px;
}

.services-preview {
    padding: 0 0 140px;
}

.service-card-large {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.service-card-large.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

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

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

.link-arrow {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    transition: transform 0.2s;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.value-proposition {
    padding: 100px 0;
    background: #f5f5f5;
}

.value-proposition h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.value-proposition p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.cta-section {
    padding: 140px 0;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-box p {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.btn-primary {
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 48px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}

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

.btn-secondary {
    background: transparent;
    color: #1a1a1a;
    padding: 16px 48px;
    font-size: 16px;
    border: 1px solid #1a1a1a;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
    margin-left: 16px;
}

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

.form-section {
    padding: 100px 0 140px;
    background: #fafafa;
}

.form-section h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 48px;
    text-align: center;
}

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

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #4a4a4a;
}

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

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

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

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

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

.disclaimer-text {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.8;
}

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

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

.footer-links {
    flex: 1;
}

.footer-links h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

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

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

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

.footer-contact {
    flex: 1;
}

.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-contact p {
    font-size: 14px;
    color: #b5b5b5;
    line-height: 1.7;
    margin-bottom: 12px;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e5e5e5;
    padding: 24px;
    z-index: 2000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #4a4a4a;
}

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

.btn-accept {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px 32px;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

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

.btn-reject {
    background: transparent;
    color: #1a1a1a;
    padding: 12px 32px;
    font-size: 14px;
    border: 1px solid #d5d5d5;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-reject:hover {
    border-color: #1a1a1a;
}

.page-hero {
    padding: 100px 0 60px;
    background: #fafafa;
}

.page-hero h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.lead-text {
    font-size: 20px;
    color: #6a6a6a;
}

.about-content {
    padding: 100px 0;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.about-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.methodology-section {
    padding: 100px 0;
    background: #f5f5f5;
}

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

.method-image {
    flex: 1;
}

.method-image img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #d5d5d5;
    object-fit: cover;
}

.method-content {
    flex: 1;
}

.method-content h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

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

.values-section {
    padding: 100px 0;
}

.values-section h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 30px);
    min-width: 300px;
}

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

.value-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.expertise-section {
    padding: 100px 0;
    background: #fafafa;
}

.expertise-section h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
}

.expertise-section p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.cta-about {
    padding: 120px 0;
    text-align: center;
}

.cta-about h2 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-about p {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.services-detailed {
    padding: 80px 0 120px;
}

.service-detail-card {
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e5e5e5;
}

.service-detail-card:last-child {
    border-bottom: none;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 40px;
}

.service-detail-header h2 {
    font-size: 36px;
    font-weight: 400;
    letter-spacing: -0.02em;
}

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

.service-detail-content {
    display: flex;
    gap: 60px;
}

.service-detail-content img {
    width: 400px;
    height: auto;
    display: block;
    background-color: #e5e5e5;
    object-fit: cover;
}

.service-text {
    flex: 1;
}

.service-text p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cta-services {
    padding: 100px 0;
    background: #fafafa;
    text-align: center;
}

.cta-services h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-services p {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.contact-info-section {
    padding: 80px 0 100px;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.contact-details > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 48px;
}

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.contact-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    background-color: #e5e5e5;
    object-fit: cover;
}

.additional-info {
    padding: 80px 0 100px;
    background: #f5f5f5;
}

.additional-info h2 {
    font-size: 36px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.additional-info p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.cta-contact {
    padding: 100px 0;
    text-align: center;
}

.cta-contact h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.cta-contact p {
    font-size: 18px;
    color: #6a6a6a;
    margin-bottom: 40px;
}

.thanks-section {
    padding: 120px 0 60px;
    text-align: center;
}

.thanks-section h1 {
    font-size: 64px;
    font-weight: 300;
    letter-spacing: -0.03em;
    margin-bottom: 32px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto 48px;
}

.thanks-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.next-steps {
    padding: 80px 0 120px;
}

.next-steps h2 {
    font-size: 42px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    text-align: center;
}

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

.step-item {
    flex: 1;
}

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

.step-item p {
    font-size: 16px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-intro {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 48px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 48px;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

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

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

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

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

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

.legal-date {
    margin-top: 60px;
    font-size: 14px;
    color: #8a8a8a;
    font-style: italic;
}

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

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

    .service-card-large,
    .service-card-large.reverse {
        flex-direction: column;
        gap: 40px;
    }

    .contact-layout {
        flex-direction: column;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-content img {
        width: 100%;
    }

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

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

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

    .service-detail-header {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .methodology-section .container-wide {
        flex-direction: column;
    }
}