* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

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

.narrow-content {
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

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

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

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

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

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

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

.hero-visual {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 600px;
    overflow: hidden;
    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;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

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

.hero-overlay p {
    font-size: 22px;
    color: #ecf0f1;
    max-width: 700px;
}

.story-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

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

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

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

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

.split-text {
    flex: 1;
}

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

.split-text p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #34495e;
}

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

.split-text a:hover {
    text-decoration: underline;
}

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

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

.insight-reveal {
    padding: 80px 0;
    background: #2c3e50;
    color: #ecf0f1;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #ffffff;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 20px;
}

.insight-reveal a {
    color: #3498db;
    text-decoration: none;
}

.product-showcase {
    padding: 80px 0;
}

.product-showcase h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.feature-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

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

.feature-card h4 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #2c3e50;
}

.feature-card p {
    padding: 0 20px 20px;
    color: #7f8c8d;
    font-size: 16px;
}

.testimonial-inline {
    padding: 60px 0;
    background: #ecf0f1;
}

.testimonial-inline blockquote {
    border-left: 4px solid #3498db;
    padding-left: 30px;
    font-size: 22px;
    font-style: italic;
    color: #34495e;
}

.testimonial-inline cite {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-style: normal;
    color: #7f8c8d;
}

.benefits-grid {
    padding: 80px 0;
}

.benefits-grid h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.benefit-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

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

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

.benefit-item p {
    font-size: 17px;
    color: #34495e;
}

.benefit-item a {
    color: #3498db;
    text-decoration: none;
}

.trust-builder {
    padding: 80px 0;
    background: #34495e;
    color: #ecf0f1;
}

.trust-builder h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #ffffff;
}

.trust-builder p {
    font-size: 18px;
    margin-bottom: 18px;
}

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

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

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

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.service-card ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #34495e;
}

.service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.order-form-section {
    padding: 80px 0;
}

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

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

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

.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 #bdc3c7;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #27ae60;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 60px 0;
    background: #fffbf0;
    border-top: 2px solid #f39c12;
    border-bottom: 2px solid #f39c12;
}

.disclaimer {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    font-style: italic;
}

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

.references-section h3 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.references-list {
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    font-size: 16px;
}

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

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

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

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

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

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

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

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

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

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

.footer-col ul li a:hover {
    color: #3498db;
}

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

.page-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.content-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.content-block img {
    flex: 1;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.text-content {
    flex: 1;
}

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

.text-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    color: #7f8c8d;
}

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

.service-full {
    margin-bottom: 60px;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-header {
    position: relative;
    background-color: #34495e;
}

.service-header img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.8;
}

.service-header-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
}

.service-header-text h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

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

.service-description {
    padding: 40px;
}

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

.service-description ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-description ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #34495e;
}

.service-description ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
    font-size: 20px;
}

.service-description p {
    font-size: 17px;
    color: #34495e;
    margin-bottom: 16px;
}

.cta-section {
    padding: 80px 0;
    background: #3498db;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #3498db;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.contact-content {
    padding: 60px 0;
}

.contact-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.contact-additional {
    max-width: 800px;
    margin: 0 auto;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-additional p {
    font-size: 18px;
    margin-bottom: 18px;
    color: #34495e;
}

.thanks-section {
    padding: 120px 0;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.thanks-content .btn-primary {
    margin-top: 30px;
}

.legal-page {
    padding: 60px 0;
    min-height: 60vh;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #34495e;
}

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

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

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

.legal-page ul li {
    margin-bottom: 10px;
    font-size: 17px;
    color: #34495e;
}

.legal-page a {
    color: #3498db;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.last-updated {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #bdc3c7;
    font-style: italic;
    color: #7f8c8d;
}

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

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

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-cards,
    .feature-cards {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}