* {
    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-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

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

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

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

.main-header {
    padding: 30px 0;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav {
    display: flex;
    gap: 35px;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

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

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

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: #4a4a4a;
    font-weight: 300;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    width: 100%;
    height: 700px;
    background-color: #f5f5f5;
    margin-top: 80px;
}

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

.intro-statement {
    padding: 120px 0;
}

.statement-text {
    font-size: 24px;
    line-height: 1.8;
    font-weight: 300;
    color: #2a2a2a;
}

.featured-insight {
    padding: 100px 0;
    background-color: #fafafa;
}

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

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.insight-visual {
    flex: 1;
    background-color: #e8e8e8;
}

.insight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    padding: 100px 0 60px;
}

.section-heading {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 25px;
}

.services-intro {
    font-size: 18px;
    color: #4a4a4a;
}

.service-cards {
    padding: 0 0 100px;
}

.container-cards {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    background-color: #e8e8e8;
}

.service-card h3 {
    font-size: 28px;
    font-weight: 400;
    margin-top: 10px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #3a3a3a;
}

.price-display {
    font-size: 36px;
    font-weight: 300;
    margin: 15px 0;
    color: #1a1a1a;
}

.btn-service {
    padding: 16px 40px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #3a3a3a;
}

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

.order-section h2 {
    font-size: 38px;
    font-weight: 300;
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    color: #3a3a3a;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d0d0d0;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
}

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

.form-group input[readonly] {
    background-color: #f5f5f5;
    color: #1a1a1a;
    font-weight: 500;
}

.btn-submit {
    padding: 18px 50px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
    align-self: flex-start;
    margin-top: 10px;
}

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

.trust-indicator {
    padding: 100px 0;
}

.trust-statement {
    font-size: 22px;
    line-height: 1.7;
    color: #2a2a2a;
    text-align: center;
}

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

.disclaimer-text {
    font-size: 13px;
    line-height: 1.8;
    color: #5a5a5a;
}

.main-footer {
    padding: 60px 0;
    border-top: 1px solid #e8e8e8;
    background-color: #fafafa;
}

.footer-links {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

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

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

.footer-info {
    margin-top: 20px;
}

.footer-info p {
    font-size: 13px;
    color: #6a6a6a;
}

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

.page-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 18px;
    color: #4a4a4a;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
}

.content-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #3a3a3a;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    font-size: 17px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    color: #3a3a3a;
}

.feature-list li:before {
    content: "—";
    position: absolute;
    left: 0;
}

.visual-break {
    padding: 80px 0;
    background-color: #fafafa;
}

.visual-break img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.cta-text {
    font-size: 24px;
    margin-bottom: 30px;
    color: #2a2a2a;
}

.btn-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: #3a3a3a;
}

.services-detailed {
    padding: 60px 0 100px;
}

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

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

.service-detail-block h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
}

.service-detail-block p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.service-timeline {
    font-size: 15px;
    color: #6a6a6a;
    font-style: italic;
    margin-top: 20px;
}

.price-large {
    font-size: 42px;
    font-weight: 300;
    margin: 30px 0 25px;
}

.contact-info {
    padding: 60px 0;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 15px;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #3a3a3a;
}

.contact-note {
    margin-top: 60px;
    padding: 30px;
    background-color: #fafafa;
}

.contact-note p {
    font-size: 16px;
    color: #4a4a4a;
}

.contact-note a {
    color: #1a1a1a;
}

.map-placeholder {
    padding: 0 0 100px;
}

.map-placeholder img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    background-color: #e8e8e8;
}

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

.thanks-hero h1 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
}

.thanks-message {
    font-size: 19px;
    color: #3a3a3a;
    margin-bottom: 20px;
}

.service-confirmation {
    font-size: 17px;
    color: #4a4a4a;
}

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

.next-steps h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 50px;
}

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

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

.step-item p {
    font-size: 16px;
    color: #3a3a3a;
}

.return-home {
    padding: 0 0 100px;
    text-align: center;
}

.legal-page {
    padding: 60px 0 100px;
}

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

.legal-updated {
    font-size: 14px;
    color: #6a6a6a;
    margin-bottom: 50px;
}

.legal-page h2 {
    font-size: 26px;
    font-weight: 400;
    margin: 40px 0 20px;
}

.legal-page h3 {
    font-size: 20px;
    font-weight: 400;
    margin: 30px 0 15px;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #3a3a3a;
}

.legal-page ul {
    margin: 15px 0 15px 25px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #3a3a3a;
}

.legal-page a {
    color: #1a1a1a;
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 25px 40px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    flex: 1;
    min-width: 300px;
}

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

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

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

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

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

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

@media (max-width: 768px) {
    .container-header,
    .container-hero,
    .container-narrow,
    .container-wide,
    .container-form,
    .container-cards,
    .container-footer {
        padding: 0 20px;
    }

    .main-header {
        padding: 20px 0;
    }

    .container-header {
        gap: 15px;
    }

    .main-nav {
        width: 100%;
        gap: 20px;
        justify-content: flex-start;
    }

    .hero-minimal {
        padding: 60px 0 40px;
    }

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

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

    .hero-image-wrapper {
        height: 400px;
        margin-top: 40px;
    }

    .intro-statement {
        padding: 60px 0;
    }

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

    .insight-layout {
        flex-direction: column;
        gap: 40px;
    }

    .section-heading {
        font-size: 32px;
    }

    .service-card img {
        height: 300px;
    }

    .price-display {
        font-size: 28px;
    }

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

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-accept,
    .btn-reject {
        flex: 1;
    }
}