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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 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 #dee2e6;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

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

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 120px 0 100px;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-block p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #1a1a2e;
    color: #ffffff;
}

.bg-accent {
    background-color: #e8f4f8;
}

.problem-section {
    padding: 90px 0;
}

.problem-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.problem-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.problem-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
    font-weight: 600;
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
}

.insight-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.cta-inline:hover {
    background-color: #2980b9;
}

.services-overview {
    padding: 90px 0;
}

.services-overview h2 {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    margin-bottom: 60px;
    opacity: 0.9;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 10px;
    border-left: 5px solid #3498db;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.9;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-top: 10px;
}

.cta-centered {
    text-align: center;
    margin-top: 50px;
}

.cta-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

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

.trust-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    font-weight: 700;
}

.trust-section p {
    font-size: 17px;
    margin-bottom: 40px;
    line-height: 1.8;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.check-item {
    padding: 18px 20px;
    background-color: #e8f4f8;
    border-radius: 6px;
    font-size: 16px;
    position: relative;
    padding-left: 50px;
}

.check-item::before {
    content: '✓';
    position: absolute;
    left: 20px;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.testimonials-section {
    padding: 90px 0;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.testimonial {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.quote {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.process-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    flex: 1 1 calc(50% - 20px);
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.form-section > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 50px;
}

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

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

.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: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.disclaimer {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

.footer-column {
    flex: 1 1 250px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-column ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column ul li a:hover {
    opacity: 1;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -4px 12px 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 1 300px;
    font-size: 15px;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    opacity: 0.8;
}

.about-hero {
    background-color: #667eea;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.about-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

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

.value-card {
    flex: 1 1 calc(33.333% - 20px);
    padding: 35px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #3498db;
}

.value-card p {
    font-size: 15px;
    line-height: 1.7;
}

.services-hero {
    background-color: #764ba2;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.service-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-card h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a2e;
}

.service-card p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.contact-hero {
    background-color: #3498db;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-info {
    padding: 80px 0;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

.info-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #3498db;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #2c3e50;
}

.legal-hero {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.legal-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 40px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

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

.legal-content ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 10px;
}

.thanks-hero {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #ffffff;
    padding: 120px 0;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-hero p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.thanks-content {
    padding: 80px 0;
    text-align: center;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .hero-section h1,
    .about-hero h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

    .nav-menu {
        gap: 20px;
    }

    .problem-card,
    .step,
    .value-card {
        flex: 1 1 100%;
    }

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

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

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