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

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

.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: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    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;
}

.cookie-content a {
    color: #4a9eff;
    text-decoration: none;
}

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

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

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

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

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

.btn-cookie-reject:hover {
    background: #ffffff;
    color: #1a1a1a;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

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

.hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

.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;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 24px;
    font-weight: 300;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #34495e;
}

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

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

.insight-section > .container-narrow > p {
    font-size: 20px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

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

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

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

.insight-card p {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.story-section {
    padding: 100px 0;
}

.story-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-layout img {
    flex: 1;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.story-content {
    flex: 1;
}

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

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

.trust-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background: #ffffff;
    border-left: 4px solid #e67e22;
    border-radius: 4px;
}

.testimonial p {
    font-size: 20px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-section {
    padding: 100px 0;
}

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

.benefits-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.benefit-item {
    flex: 1;
    min-width: 250px;
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
}

.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

.service-content {
    padding: 30px;
}

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

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

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

.service-features li {
    font-size: 14px;
    color: #7f8c8d;
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 15px;
    background: #e67e22;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.cta-section {
    padding: 100px 0;
}

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

.cta-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #7f8c8d;
}

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

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    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: #e67e22;
}

.selected-service-display {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 25px;
    font-size: 16px;
}

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

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

.final-cta {
    padding: 80px 0;
    background: #e67e22;
    color: #ffffff;
    text-align: center;
}

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

.final-cta p {
    font-size: 20px;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

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

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

.footer-links a:hover {
    opacity: 1;
}

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 20px;
}

.footer-bottom p:last-child {
    font-size: 14px;
    opacity: 0.6;
}

.thanks-container {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-container p {
    font-size: 20px;
    margin-bottom: 20px;
    color: #34495e;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: #e67e22;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-container .btn-home:hover {
    background: #d35400;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.about-hero {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #34495e;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.about-section {
    margin-bottom: 80px;
}

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

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

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

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

.services-hero p {
    font-size: 20px;
    opacity: 0.9;
}

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

.legal-container {
    padding: 80px 0;
}

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

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

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

.legal-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #34495e;
}

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

    .hero-content p {
        font-size: 18px;
    }

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

    .story-layout {
        flex-direction: column;
    }

    .nav-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

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

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

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