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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #2d7dd2;
    color: #fff;
}

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

.btn-reject {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo a {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d7dd2;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    background-color: #f8f9fa;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 650px;
    overflow: hidden;
}

.hero-image-container 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;
}

.hero-text {
    color: #fff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.5;
    opacity: 0.95;
}

.story-section {
    padding: 90px 0;
    background-color: #fff;
}

.story-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
    line-height: 1.3;
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #444;
}

.story-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

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

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

.problem-left {
    flex: 1;
}

.problem-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    font-size: 18px;
    padding: 18px 0;
    padding-left: 35px;
    position: relative;
    color: #444;
    border-bottom: 1px solid #e0e0e0;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #d32f2f;
    font-size: 22px;
    font-weight: bold;
}

.problem-right {
    flex: 1;
    background-color: #e8eef3;
}

.problem-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    padding: 90px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.insight-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.insight-section > p {
    font-size: 19px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.insight-cards {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.insight-card {
    flex: 1;
    background-color: #2a2a2a;
    padding: 40px;
    border-radius: 8px;
}

.insight-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #fff;
}

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

.trust-section {
    padding: 90px 0;
    background-color: #fff;
}

.trust-section h2 {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2d7dd2;
}

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

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

.benefits-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.benefits-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #1a1a1a;
    text-align: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.benefit-number {
    font-size: 48px;
    font-weight: 800;
    color: #2d7dd2;
    line-height: 1;
    min-width: 80px;
}

.benefit-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.services-preview-section {
    padding: 90px 0;
    background-color: #fff;
}

.services-preview-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(33.333% - 25px);
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.service-card-content {
    padding: 30px;
}

.service-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2d7dd2;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 15px;
    background-color: #2d7dd2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #235ba8;
}

.form-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.form-container {
    background-color: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
    text-align: center;
}

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

.selected-service-display {
    background-color: #e8f4fd;
    padding: 25px;
    border-radius: 6px;
    margin-bottom: 30px;
    border-left: 4px solid #2d7dd2;
}

.selected-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.selected-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.selected-price {
    font-size: 24px;
    font-weight: 800;
    color: #2d7dd2;
    margin-bottom: 15px;
}

.btn-change-service {
    padding: 10px 20px;
    background-color: transparent;
    color: #2d7dd2;
    border: 2px solid #2d7dd2;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-change-service:hover {
    background-color: #2d7dd2;
    color: #fff;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    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: #2d7dd2;
}

.form-group-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.form-group-checkbox a {
    color: #2d7dd2;
    text-decoration: none;
}

.form-group-checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #2d7dd2;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.final-cta-section {
    padding: 80px 0;
    background-color: #1a1a1a;
    color: #fff;
}

.final-cta-content {
    text-align: center;
}

.final-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 20px 50px;
    background-color: #2d7dd2;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #235ba8;
}

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

.disclaimer {
    background-color: #fff;
    padding: 35px;
    border-radius: 6px;
    border-left: 4px solid #ff9800;
}

.disclaimer h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

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

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

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

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

.footer-col a:hover {
    color: #2d7dd2;
}

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

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

.page-header {
    padding: 80px 0 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 19px;
    color: #666;
}

.page-content {
    padding: 60px 0;
    background-color: #fff;
}

.page-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

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

.page-content ul,
.page-content ol {
    margin-bottom: 25px;
    padding-left: 30px;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.about-intro {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.about-intro p {
    font-size: 19px;
    line-height: 1.8;
    color: #444;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.service-item {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2d7dd2;
}

.service-item h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-item-price {
    font-size: 32px;
    font-weight: 800;
    color: #2d7dd2;
    margin-bottom: 20px;
}

.service-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 25px;
}

.thanks-content h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background-color: #2d7dd2;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-home:hover {
    background-color: #235ba8;
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .problem-content,
    .contact-grid,
    .footer-grid {
        flex-direction: column;
    }

    .insight-cards,
    .testimonials-grid {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        flex-wrap: wrap;
        gap: 20px;
    }

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

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

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

    .form-container {
        padding: 30px 20px;
    }

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