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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 10000;
}

.cookie-banner.active {
    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;
}

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

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

.navbar {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 11px;
    color: #888;
    font-style: italic;
    padding: 5px 10px;
    background: #f8f8f8;
    border-radius: 3px;
}

.hero-section {
    position: relative;
    height: 600px;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(230, 126, 34, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 52px;
    margin-bottom: 20px;
    max-width: 900px;
    line-height: 1.2;
}

.hero-subtitle {
    color: #fff;
    font-size: 22px;
    max-width: 800px;
    font-weight: 300;
}

.bg-light {
    background: #f9f9f9;
}

.bg-white {
    background: #fff;
}

.bg-dark {
    background: #2c3e50;
    color: #fff;
}

.bg-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.bg-primary {
    background: #e67e22;
    color: #fff;
}

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

.container-standard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

section {
    position: relative;
}

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

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

.highlight-text {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
    text-align: center;
    padding: 30px 0;
}

.insight-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

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

.insight-card {
    flex: 1;
    min-width: 300px;
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-card h3 {
    font-size: 26px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.insight-card p {
    padding: 0 25px 25px;
    color: #666;
    line-height: 1.7;
}

.problem-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    text-align: center;
}

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

.problem-points {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.point-number {
    font-size: 48px;
    font-weight: bold;
    color: #e67e22;
    flex-shrink: 0;
    width: 80px;
    text-align: center;
}

.point-content h4 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #ecf0f1;
}

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

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

.solution-intro {
    font-size: 20px;
    text-align: center;
    margin-bottom: 50px;
    color: #555;
}

.solution-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    object-fit: cover;
}

.solution-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    text-align: center;
}

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.testimonial-item {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.testimonial-text {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: #888;
    font-weight: 500;
}

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

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 8px;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

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

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

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

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-block {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-block img {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.service-content {
    flex: 1;
    min-width: 300px;
}

.service-content h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
    font-size: 18px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #e67e22;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
}

.cta-section p {
    font-size: 20px;
    text-align: center;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 5px;
    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: #e67e22;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

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

.btn-primary {
    padding: 12px 30px;
    background: #e67e22;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #d35400;
}

.btn-secondary {
    padding: 12px 30px;
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

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

.disclaimer-section {
    border-top: 1px solid #ddd;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.8;
    color: #777;
    text-align: center;
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #e67e22;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
}

.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: #e67e22;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

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

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

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

    .point-item {
        flex-direction: column;
        gap: 15px;
    }

    .point-number {
        width: auto;
    }

    .service-block,
    .service-block.reverse {
        flex-direction: column;
    }

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

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

.simple-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px 0;
}

.simple-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.page-title {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    text-align: center;
}

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

.content-section h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.content-section p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

.content-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
    color: #555;
}

.contact-info {
    background: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.contact-info strong {
    color: #2c3e50;
}

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

.thanks-box {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 15px;
}

.thanks-box .btn-primary {
    margin-top: 30px;
    display: inline-block;
    text-decoration: none;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

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

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

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

.service-card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-card-price {
    font-size: 28px;
    font-weight: bold;
    color: #e67e22;
    margin-top: 20px;
}

.about-content {
    display: flex;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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