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

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.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: 700;
    color: #27ae60;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: #27ae60;
}

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

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.story-section {
    background: #f8f9fa;
    padding: 80px 30px;
    margin: 60px 0;
}

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

.story-container h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #34495e;
}

.insight-box {
    background: #27ae60;
    color: #ffffff;
    padding: 32px;
    margin: 40px 0;
    border-radius: 4px;
}

.insight-box p {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.6;
    margin: 0;
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 4px;
    background-color: #ecf0f1;
}

.problem-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

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

.problem-container p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #34495e;
}

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

.problem-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 18px;
    color: #34495e;
}

.problem-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
}

.revelation-section {
    background: #ecf0f1;
    padding: 80px 30px;
}

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

.revelation-image {
    width: 50%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    background-color: #bdc3c7;
}

.revelation-text {
    width: 50%;
}

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

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

.trust-section {
    padding: 80px 30px;
}

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

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

.testimonial-grid {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 32px;
    border-left: 4px solid #27ae60;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial p {
    font-size: 17px;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 16px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.benefits-section {
    background: #2c3e50;
    color: #ffffff;
    padding: 80px 30px;
}

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

.benefits-container h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #ffffff;
}

.benefits-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: rgba(255,255,255,0.1);
    padding: 32px;
    border-radius: 4px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #ffffff;
}

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

.services-preview {
    padding: 80px 30px;
    background: #f8f9fa;
}

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

.services-container h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.services-intro {
    font-size: 18px;
    margin-bottom: 48px;
    color: #5a6c7d;
}

.service-item {
    background: #ffffff;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.service-text {
    flex: 1;
    padding-right: 32px;
}

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

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #229954;
}

.form-section {
    padding: 80px 30px;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

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

.form-container > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #5a6c7d;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-family: inherit;
}

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

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

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

.form-note {
    margin-top: 40px;
    padding: 20px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
}

.form-note p {
    font-size: 14px;
    line-height: 1.6;
    color: #856404;
}

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

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

.footer-section {
    flex: 1;
}

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

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

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

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

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

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    padding: 24px;
    display: none;
    z-index: 1000;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #27ae60;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.cookie-accept:hover {
    background: #229954;
}

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

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

.service-selected-notice {
    background: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 4px;
    margin-bottom: 24px;
    border-left: 4px solid #28a745;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 30px;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

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

.thanks-container a {
    display: inline-block;
    margin-top: 32px;
    padding: 16px 40px;
    background: #27ae60;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-container a:hover {
    background: #229954;
}

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

.page-container h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-container h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #34495e;
}

.page-container p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #34495e;
}

.page-container ul,
.page-container ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

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

.contact-info {
    background: #f8f9fa;
    padding: 32px;
    border-radius: 4px;
    margin: 40px 0;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

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

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

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

    .revelation-image,
    .revelation-text {
        width: 100%;
    }

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

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

    .service-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-price {
        align-items: flex-start;
        margin-top: 16px;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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