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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    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;
    margin: 0;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 20px 0;
}

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

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

.main-nav {
    display: flex;
    gap: 30px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 60px 40px;
    background: #f8f9fa;
}

.hero-text-content {
    max-width: 500px;
}

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

.hero-subtitle {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.hero-points {
    margin-bottom: 30px;
}

.point-item {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-weight: 500;
    color: #2c3e50;
}

.point-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.hero-right {
    background: #e8e8e8;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.story-section {
    padding: 80px 20px;
    background: #fff;
}

.story-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.highlight-text {
    font-weight: 600;
    color: #2c3e50;
    font-size: 20px;
    padding: 20px;
    background: #ecf0f1;
    border-radius: 4px;
    margin-top: 30px;
}

.split-benefits,
.split-method {
    display: flex;
    min-height: 500px;
    flex-wrap: wrap;
}

.split-left,
.split-right {
    flex: 1;
    min-width: 300px;
}

.split-left {
    background: #ddd;
    position: relative;
    overflow: hidden;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    padding: 60px 40px;
    display: flex;
    align-items: center;
    background: #f8f9fa;
}

.benefit-content h2,
.method-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-content p,
.method-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.benefit-list,
.method-list {
    list-style: none;
    margin-top: 30px;
}

.benefit-list li,
.method-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #333;
}

.benefit-list li:before,
.method-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.method-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 20px;
}

.method-note a {
    color: #3498db;
    text-decoration: none;
}

.method-note a:hover {
    text-decoration: underline;
}

.split-method .split-left {
    order: 2;
}

.split-method .split-right {
    order: 1;
}

.trust-section {
    padding: 80px 20px;
    background: #2c3e50;
    color: #fff;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 14px;
    color: #ecf0f1;
}

.services-preview {
    padding: 80px 20px;
    background: #ecf0f1;
}

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

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

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 380px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
}

.service-card.featured {
    border: 3px solid #3498db;
}

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.service-image-container {
    width: 100%;
    height: 220px;
    background: #ddd;
    overflow: hidden;
}

.service-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.service-card > p {
    padding: 0 20px;
    color: #555;
    margin-bottom: 15px;
}

.service-features {
    list-style: none;
    padding: 0 20px;
    margin-bottom: 20px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 14px;
    color: #333;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2ecc71;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin: 20px 0;
}

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

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

.form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

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

.form-intro p {
    font-size: 18px;
    color: #555;
}

.contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #27ae60;
}

.final-cta {
    padding: 80px 20px;
    background: #3498db;
    color: #fff;
    text-align: center;
}

.final-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background: #ecf0f1;
}

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

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

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

.footer-col h4 {
    margin-bottom: 15px;
    color: #fff;
}

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

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

.footer-references {
    margin-bottom: 20px;
}

.footer-references h4 {
    margin-bottom: 10px;
    color: #fff;
    font-size: 16px;
}

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

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

@media (max-width: 768px) {
    .hero-text-content h1 {
        font-size: 32px;
    }

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

    .hero-split,
    .split-benefits,
    .split-method {
        flex-direction: column;
    }

    .split-method .split-left,
    .split-method .split-right {
        order: 0;
    }

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

    .service-card {
        max-width: 100%;
    }

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

    .main-nav {
        gap: 15px;
        font-size: 14px;
    }
}