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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
}

.hero-visual {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    background-color: #34495e;
    overflow: hidden;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

.problem-amplify {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.card-grid-intro {
    display: flex;
    justify-content: center;
}

.intro-card {
    background-color: #ffffff;
    padding: 50px 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 800px;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
    line-height: 1.3;
}

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

.insight-section {
    padding: 80px 0;
}

.insight-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.insight-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-card-large {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.story-card-large h2 {
    font-size: 34px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.story-card-large img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 28px;
    background-color: #ecf0f1;
    object-fit: cover;
}

.story-card-large p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.trust-builder {
    padding: 80px 0;
}

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

.trust-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.testimonial-inline {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #ffffff;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card blockquote {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 15px;
    opacity: 0.9;
    font-style: normal;
}

.benefits-reveal {
    padding: 80px 0;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.benefit-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 16px;
    margin: 0 24px 24px;
    color: #495057;
    line-height: 1.7;
}

.services-pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-pricing h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #495057;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

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

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin: 0 24px 20px;
}

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

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

.form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

#selectedServiceDisplay {
    font-size: 17px;
    color: #3498db;
    margin-bottom: 30px;
    font-weight: 600;
}

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

.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 16px;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    width: 100%;
    padding: 16px 0;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff3cd;
}

.disclaimer-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.7);
    border-left: 4px solid #ffc107;
    border-radius: 6px;
}

.disclaimer-card p {
    font-size: 14px;
    color: #856404;
    line-height: 1.7;
}

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

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.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: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(236, 240, 241, 0.2);
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 30px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.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: 80px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 18px;
    color: #495057;
}

.about-content {
    padding: 60px 0;
}

.about-story {
    margin-bottom: 60px;
}

.about-story h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #2c3e50;
}

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

.about-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.about-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

.team-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-detail-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price-large {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 24px;
}

.service-detail-card p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.service-detail-card ul {
    margin-top: 20px;
    padding-left: 20px;
}

.service-detail-card ul li {
    font-size: 15px;
    margin-bottom: 8px;
    color: #495057;
}

.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-card h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 15px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.7;
}

.contact-note {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #495057;
    line-height: 1.7;
}

.contact-note p:last-child {
    margin-bottom: 0;
}

.thanks-section {
    padding: 80px 0;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-card h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-card > p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #495057;
}

.service-confirmation {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #d4edda;
    border-radius: 6px;
}

.service-confirmation p {
    font-size: 16px;
    color: #155724;
    margin: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.next-steps ul {
    padding-left: 20px;
}

.next-steps ul li {
    font-size: 16px;
    margin-bottom: 12px;
    color: #495057;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #dfe6e9;
}

.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav {
        gap: 16px;
        font-size: 14px;
    }

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

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

    .insight-wrapper {
        flex-direction: column;
    }

    .trust-grid,
    .benefit-card-grid,
    .service-card-grid {
        flex-direction: column;
    }

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

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

    .form-card {
        padding: 30px;
    }
}