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

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

.main-nav {
    background: #1a1a1a;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}

.ad-disclosure {
    color: #bbb;
    font-size: 0.75rem;
    padding: 0.3rem 0.8rem;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-visual {
    width: 100%;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    height: 85vh;
    background-color: #1a2332;
}

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

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

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

.hero-overlay p {
    font-size: 1.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.content-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.intro-hook {
    background: #f8f9fa;
}

.intro-hook h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-hook p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.story-section {
    padding: 5rem 2rem;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.text-block {
    flex: 1;
    min-width: 300px;
}

.text-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.image-block {
    flex: 1;
    min-width: 300px;
    background-color: #e8eaed;
}

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

.problem-amplification {
    background: #2c3e50;
    color: #fff;
    padding: 5rem 2rem;
}

.problem-amplification h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
}

.cards-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #4a9eff;
}

.card p {
    font-size: 1rem;
    line-height: 1.7;
}

.insight-reveal {
    background: #fff;
}

.insight-reveal h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.insight-reveal p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.trust-elements {
    background: #f0f4f8;
    padding: 5rem 2rem;
}

.trust-elements h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.features-flex {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: space-around;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.feature-item h4 {
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
}

.feature-item p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #555;
}

.testimonials-inline {
    background: #fff;
    padding: 5rem 2rem;
}

.testimonials-inline h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

blockquote {
    background: #f8f9fa;
    border-left: 4px solid #4a9eff;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}

blockquote p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
}

.services-reveal {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.services-reveal h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 1.5rem;
}

.select-service {
    background: #4a9eff;
    color: #fff;
    border: none;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.select-service:hover {
    background: #3a8ee6;
}

.form-section {
    background: #fff;
    padding: 5rem 2rem;
}

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.form-section p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

.submit-btn {
    background: #4a9eff;
    color: #fff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
    padding: 5rem 2rem;
}

.final-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #667eea;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.disclaimer-section {
    background: #f8f9fa;
    padding: 3rem 2rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: #bbb;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    z-index: 10000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.cookie-accept {
    background: #4a9eff;
    color: #fff;
}

.cookie-accept:hover {
    background: #3a8ee6;
}

.cookie-reject {
    background: #555;
    color: #fff;
}

.cookie-reject:hover {
    background: #444;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
}

.about-intro {
    padding: 4rem 2rem;
}

.about-intro img {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 8px;
    background-color: #e8eaed;
    object-fit: cover;
}

.about-intro h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.about-evolution {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.about-process {
    background: #fff;
    padding: 5rem 2rem;
}

.about-process h3 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.step {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    border-left: 4px solid #4a9eff;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step p {
    font-size: 0.95rem;
    color: #555;
}

.about-values {
    background: #f0f4f8;
    padding: 5rem 2rem;
}

.about-values h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-values p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.about-team {
    background: #fff;
    padding: 5rem 2rem;
}

.about-team h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.about-team p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.services-detailed {
    padding: 3rem 2rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

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

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-info ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a9eff;
    font-weight: bold;
}

.price-display {
    font-size: 2rem;
    font-weight: bold;
    color: #4a9eff;
    margin-bottom: 1.5rem;
}

.services-cta {
    background: #f0f4f8;
    padding: 4rem 2rem;
    text-align: center;
}

.services-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-info {
    padding: 4rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.contact-card .note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.contact-map {
    background: #f0f4f8;
    padding: 4rem 2rem;
}

.contact-map h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-map p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-note {
    background: #fff;
    padding: 4rem 2rem;
}

.contact-note h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.contact-note ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.contact-note ul li {
    padding: 0.3rem 0;
    color: #555;
}

.thanks-section {
    padding: 6rem 2rem;
    text-align: center;
}

.thanks-section h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 3rem auto;
    max-width: 600px;
    text-align: left;
}

.thanks-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-info ol {
    list-style: decimal;
    margin-left: 1.5rem;
}

.thanks-info ol li {
    padding: 0.5rem 0;
    color: #555;
}

.selected-service-display {
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #333;
}

.selected-service-display strong {
    color: #4a9eff;
}

.thanks-cta {
    margin-top: 3rem;
}

.legal-page {
    background: #fff;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    padding: 0.3rem 0;
    color: #555;
}

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

.update-date {
    margin-top: 3rem;
    font-style: italic;
    color: #888;
}

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .nav-links {
        gap: 1rem;
    }

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

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