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

html {
    scroll-behavior: smooth;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

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

.header-main {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
}

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

.nav-links a {
    font-size: 15px;
    color: #4a4a4a;
    transition: color 0.3s ease;
}

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

.hero-visual {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background-color: #1a1a1a;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.5));
}

.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 900px;
}

.hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-text-overlay p {
    font-size: 24px;
    font-weight: 300;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.intro-story {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #3a3a3a;
    font-weight: 300;
}

.problem-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.container-split {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-image img {
    width: 100%;
    height: 100%;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.insight-reveal {
    padding: 90px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.insight-reveal h2 {
    font-size: 42px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-reveal p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.visual-break {
    background-color: #e8e8e8;
}

.visual-break img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.services-reveal {
    padding: 100px 20px;
    background-color: #fafafa;
}

.services-reveal h2 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin: 0 20px 15px;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #c94b3c;
    margin: 15px 20px;
}

.btn-service {
    margin: 0 20px 25px;
    padding: 14px 28px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.testimonials-inline {
    padding: 90px 20px;
    background-color: #f5f5f5;
}

.testimonials-inline h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-left: 4px solid #c94b3c;
    border-radius: 4px;
}

.testimonial p {
    font-size: 19px;
    font-style: italic;
    line-height: 1.7;
    color: #3a3a3a;
    margin-bottom: 15px;
}

.testimonial cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
}

.process-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: #c94b3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

.step p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.trust-section {
    padding: 90px 20px;
    background-color: #f9f9f9;
}

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.trust-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.cta-main {
    padding: 100px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.cta-main h2 {
    font-size: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.cta-main > .container-narrow > p {
    font-size: 19px;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
}

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #c94b3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #f5f5f5;
}

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

.footer-main {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.6;
    color: #aaa;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 15px;
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-col ul a:hover {
    color: #c94b3c;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-hero {
    padding: 100px 20px 60px;
    background-color: #f5f5f5;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-story {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-story p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #3a3a3a;
}

.about-visual {
    background-color: #e8e8e8;
}

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

.about-philosophy {
    padding: 90px 20px;
    background-color: #fafafa;
}

.about-philosophy h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.philosophy-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c2c2c;
}

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

.about-team {
    padding: 80px 20px;
    background-color: #ffffff;
}

.about-team h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.about-team p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.about-process-visual {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.about-process-visual h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-visual-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.process-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.process-item h3 {
    font-size: 22px;
    margin: 20px 25px 15px;
    color: #1a1a1a;
}

.process-item p {
    font-size: 16px;
    margin: 0 25px 25px;
    line-height: 1.6;
    color: #555;
}

.about-values {
    padding: 80px 20px;
    background-color: #2c2c2c;
    color: #ffffff;
}

.about-values h2 {
    font-size: 38px;
    margin-bottom: 30px;
}

.about-values p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.cta-simple {
    padding: 90px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.cta-simple h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-simple p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #c94b3c;
    color: #ffffff;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c94b3c;
    font-weight: 700;
}

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #c94b3c;
    margin: 25px 0 20px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0f0f0;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-cta {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.contact-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 900px;
    margin: 0 auto;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

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

.contact-extra {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.contact-extra h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.contact-extra p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.contact-faq {
    padding: 80px 20px;
    background-color: #ffffff;
}

.contact-faq h2 {
    font-size: 34px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.thanks-section h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-section p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a4a4a;
}

#serviceConfirmation {
    font-weight: 600;
    color: #c94b3c;
    font-size: 19px;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #2c2c2c;
    border: 2px solid #2c2c2c;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.next-steps {
    padding: 80px 20px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.steps-list {
    max-width: 800px;
    margin: 0 auto;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-icon {
    width: 50px;
    height: 50px;
    background-color: #c94b3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c2c2c;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.legal-page {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3a3a3a;
}

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

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

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

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

.legal-page a:hover {
    color: #b03d2f;
}

@media (max-width: 768px) {
    .hero-text-overlay h1 {
        font-size: 38px;
    }

    .hero-text-overlay p {
        font-size: 18px;
    }

    .container-split {
        flex-direction: column;
        gap: 30px;
    }

    .nav-floating {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

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

    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .philosophy-item {
        flex: 1 1 100%;
    }

    .process-item {
        flex: 1 1 100%;
    }
}
