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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
}

.header-solid {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
}

.header-solid .nav-brand {
    color: #333;
}

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

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

.header-solid .nav-links a {
    color: #333;
}

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

.hero-visual-full {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-overlay {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.hero-title-large {
    font-size: 62px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}

.hero-subtitle {
    font-size: 26px;
    line-height: 1.4;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
}

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

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

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

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

.image-text-overlay {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    margin: 80px 0;
}

.overlay-container {
    width: 100%;
    position: relative;
}

.overlay-image-bg {
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.overlay-image-bg img {
    width: 100%;
    height: 100%;
    display: block;
}

.overlay-text-block {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.overlay-text-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.overlay-text-block p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #555;
}

.problem-amplification {
    padding: 120px 20px;
    background-color: #fafafa;
}

.split-problem {
    display: flex;
    gap: 60px;
    align-items: center;
}

.problem-visual {
    flex: 1;
    overflow: hidden;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-text {
    flex: 1;
}

.problem-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #333;
}

.problem-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.section-title-center {
    font-size: 40px;
    text-align: center;
    margin-bottom: 30px;
}

.insight-text {
    font-size: 20px;
    line-height: 1.8;
    text-align: center;
    color: #e0e0e0;
}

.visual-benefits {
    padding: 100px 20px;
    background-color: #ffffff;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 40px;
}

.benefit-card:nth-child(even) {
    flex-direction: row-reverse;
}

.benefit-image {
    flex: 1;
    overflow: hidden;
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
}

.benefit-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
}

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

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

.testimonial-quote {
    font-size: 22px;
    line-height: 1.7;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: #777;
    text-align: right;
}

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

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    color: #333;
}

.services-stacked {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px;
    background-color: #f9f9f9;
    border-left: 4px solid #333;
}

.service-info {
    flex: 2;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.service-info p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.service-price {
    flex: 0;
    text-align: center;
    margin: 0 30px;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #888;
    margin-bottom: 5px;
}

.price-value {
    display: block;
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.btn-service {
    padding: 14px 32px;
    background-color: #333;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 100px 20px;
    background-color: #f9f9f9;
}

.form-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #666;
}

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

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

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

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

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

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

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

.trust-elements {
    padding: 80px 20px;
    background-color: #ffffff;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.trust-item p {
    font-size: 16px;
    color: #666;
}

.footer {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto 40px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #3a3a3a;
    font-size: 13px;
    line-height: 1.6;
    color: #bbb;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 25px 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    opacity: 0.9;
}

.btn-reject {
    background-color: #f44336;
    color: #ffffff;
}

.btn-reject:hover {
    opacity: 0.9;
}

.about-hero,
.services-hero,
.contact-hero {
    padding: 150px 20px 100px;
    background-color: #f5f5f5;
    text-align: center;
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #333;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 20px;
    color: #666;
}

.about-story {
    padding: 80px 20px;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
}

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

.about-image-section {
    margin: 60px 0;
}

.about-image-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.about-values {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.about-values h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.about-team {
    padding: 80px 20px;
}

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

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

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

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

.cta-box h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    padding: 18px 50px;
    background-color: #ffffff;
    color: #333;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

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

.services-detailed {
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

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

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
}

.service-pricing {
    margin-bottom: 25px;
}

.price-from {
    font-size: 16px;
    color: #888;
    margin-right: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

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

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

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

.contact-main {
    padding: 80px 20px;
}

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

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #333;
}

.contact-info-block {
    margin-bottom: 35px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.contact-info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

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

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.thanks-hero {
    padding: 150px 20px;
    text-align: center;
    background-color: #f5f5f5;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #333;
}

.thanks-content p {
    font-size: 20px;
    margin-bottom: 30px;
    color: #666;
}

.service-confirmation {
    margin: 30px auto;
    padding: 20px;
    max-width: 600px;
    background-color: #e8f5e9;
    border-left: 4px solid #4CAF50;
}

.service-confirmation p {
    font-size: 18px;
    color: #2e7d32;
}

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

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.btn-primary {
    background-color: #333;
    color: #ffffff;
}

.btn-primary:hover {
    opacity: 0.9;
}

.btn-secondary {
    background-color: #ffffff;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    opacity: 0.7;
}

.thanks-next-steps {
    padding: 80px 20px;
}

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

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

.step-item {
    flex: 1;
    text-align: center;
    padding: 30px;
    background-color: #f9f9f9;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #333;
    color: #ffffff;
    font-size: 28px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #333;
}

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

.legal-page {
    padding: 100px 20px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #333;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #444;
}

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

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
    color: #555;
}

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

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

@media (max-width: 768px) {
    .hero-title-large {
        font-size: 36px;
    }

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

    .split-problem {
        flex-direction: column;
    }

    .benefit-card,
    .benefit-card:nth-child(even) {
        flex-direction: column;
    }

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .overlay-text-block {
        position: static;
        transform: none;
        margin: -50px 20px 0;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

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

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