* {
    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-color: #ffffff;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
}

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

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-fullwidth {
    width: 100%;
    height: 85vh;
    position: relative;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e8eef2;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44,62,80,0.8) 0%, rgba(52,152,219,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 600px;
}

.story-intro {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.story-container {
    max-width: 720px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
}

.offset-visual {
    display: flex;
    align-items: center;
    padding: 0;
    min-height: 600px;
}

.content-block-left {
    flex: 1;
    padding: 60px 80px 60px 120px;
    background-color: #ffffff;
}

.content-block-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.content-block-left p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.7;
}

.image-block-right {
    flex: 1;
    height: 600px;
    background-color: #dfe6e9;
}

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

.problem-amplify {
    padding: 90px 30px;
    background-color: #ecf0f1;
}

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

.narrow-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: #2c3e50;
}

.narrow-content p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #495057;
}

.problem-list {
    list-style: none;
    margin: 30px 0;
}

.problem-list li {
    padding: 15px 0;
    font-size: 18px;
    color: #495057;
    border-bottom: 1px solid #bdc3c7;
}

.problem-list li strong {
    color: #2c3e50;
}

.insight-reveal {
    padding: 80px 30px;
    background-color: #ffffff;
}

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

.col-text {
    flex: 1;
}

.col-text h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.col-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.col-text ul {
    list-style: none;
    padding-left: 0;
}

.col-text ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.col-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

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

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

.trust-signals {
    padding: 90px 30px;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-container {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-container h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
}

.trust-container > p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 50px;
    color: #ecf0f1;
}

.trust-elements {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #ffffff;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #ecf0f1;
}

.testimonials-inline {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.testimonial-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-item {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.testimonial-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-showcase {
    padding: 90px 30px;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.services-header p {
    font-size: 18px;
    color: #7f8c8d;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: calc(33.333% - 20px);
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

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

.service-card h3 {
    font-size: 24px;
    padding: 25px 25px 10px 25px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    padding: 0 25px 20px 25px;
    color: #495057;
    line-height: 1.6;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 10px 25px;
}

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 15px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 90px 30px;
    background-color: #ecf0f1;
}

.form-container {
    max-width: 650px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 15px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.final-assurance {
    padding: 70px 30px;
    background-color: #ffffff;
}

.assurance-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.assurance-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.assurance-content p {
    font-size: 18px;
    color: #495057;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 30px 20px 30px;
}

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 30px auto 0 auto;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -2px 15px 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;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 36px;
    }

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

    .offset-visual {
        flex-direction: column;
    }

    .content-block-left {
        padding: 40px 30px;
    }

    .image-block-right {
        width: 100%;
        height: 400px;
    }

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

    .trust-elements {
        flex-direction: column;
    }

    .testimonial-container {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

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

.service-card.selected {
    border: 3px solid #27ae60;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    background-color: #ecf0f1;
}

.thanks-content {
    max-width: 700px;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-content h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 25px;
}

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

.thanks-content .service-reference {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
}

.thanks-content .service-reference strong {
    color: #2c3e50;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 35px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.thanks-content a:hover {
    background-color: #2980b9;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
}

.page-content h2 {
    font-size: 32px;
    margin: 40px 0 20px 0;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 24px;
    margin: 30px 0 15px 0;
    color: #2c3e50;
}

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

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    font-size: 17px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 10px;
}

.contact-page {
    padding: 80px 30px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

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

.contact-detail {
    margin-bottom: 30px;
}

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

.contact-detail p {
    font-size: 17px;
    color: #495057;
    line-height: 1.6;
}

.contact-detail .email-display {
    color: #495057;
    pointer-events: none;
}