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

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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background: #1a1a2e;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #4ecdc4;
}

.hero-block {
    background: #16213e;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    margin-bottom: 50px;
}

.hero-content h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 20px;
    color: #ecf0f1;
    line-height: 1.6;
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    background-color: #0f3460;
}

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

.story-intro {
    padding: 90px 20px;
    background: #f7f9fc;
}

.content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.content-wrapper-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.opening-line {
    font-size: 26px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 30px;
    line-height: 1.5;
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.problem-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.problem-section p {
    font-size: 17px;
    margin-bottom: 18px;
}

.insight-reveal {
    padding: 90px 20px;
    background: #e8f4f8;
}

.insight-reveal h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #16213e;
    text-align: center;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 22px;
    text-align: center;
}

.visual-break {
    width: 100%;
    background-color: #34495e;
}

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

.trust-builder {
    padding: 100px 20px;
    background: #ffffff;
}

.trust-builder h3 {
    font-size: 34px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.feature-item {
    flex: 1;
    padding: 30px;
    background: #f8f9fa;
    border-left: 4px solid #4ecdc4;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #16213e;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonial-inline {
    padding: 70px 20px;
    background: #1a1a2e;
}

.testimonial-inline blockquote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-inline p {
    font-size: 24px;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-inline cite {
    font-size: 16px;
    color: #bdc3c7;
    font-style: normal;
}

.benefits-reveal {
    padding: 90px 20px;
    background: #f7f9fc;
}

.benefits-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    font-size: 18px;
    padding: 18px 0 18px 40px;
    position: relative;
    margin-bottom: 15px;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-size: 24px;
    font-weight: bold;
}

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

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #16213e;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #f8f9fa;
    padding: 0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 20px 15px 20px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #16213e;
    margin: 10px 20px;
}

.select-service-btn {
    background: #4ecdc4;
    color: #ffffff;
    border: none;
    padding: 15px 25px;
    font-size: 16px;
    cursor: pointer;
    margin: 20px;
    margin-top: auto;
    transition: background 0.3s;
}

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

.cta-primary {
    padding: 90px 20px;
    background: #e8f4f8;
}

.cta-primary h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #16213e;
}

.cta-primary > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #34495e;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe6e9;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background: #16213e;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #0f1729;
}

.final-thought {
    padding: 80px 20px;
    background: #ffffff;
}

.final-thought p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
}

.disclaimer-section {
    padding: 50px 20px;
    background: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col ul li a:hover {
    color: #4ecdc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #16213e;
    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 {
    color: #ffffff;
    font-size: 15px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #7f8c8d;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
    text-align: center;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #16213e;
    margin-bottom: 25px;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-box .selected-service {
    font-weight: 600;
    color: #4ecdc4;
}

.back-home-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #16213e;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.3s;
}

.back-home-btn:hover {
    background: #0f1729;
}

.about-hero {
    background: #16213e;
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    font-size: 46px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    padding: 90px 20px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image-section {
    padding: 60px 20px;
    background: #f7f9fc;
}

.contact-hero {
    background: #16213e;
    padding: 60px 20px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.contact-info {
    max-width: 700px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #16213e;
}

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

.info-item h3 {
    font-size: 18px;
    color: #4ecdc4;
    margin-bottom: 10px;
}

.info-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.services-hero {
    background: #16213e;
    padding: 70px 20px;
    text-align: center;
}

.services-hero h1 {
    font-size: 44px;
    color: #ffffff;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 19px;
    color: #ecf0f1;
    max-width: 750px;
    margin: 0 auto;
}

.services-main {
    padding: 90px 20px;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #16213e;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

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

    .two-col-layout {
        flex-direction: column;
    }

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

    .services-cards {
        flex-direction: column;
    }

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

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

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