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

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

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

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

.main-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

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

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

.nav-items a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.ad-label {
    background: #e74c3c;
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background: #2c3e50;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

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

.hero-overlay p {
    font-size: 20px;
    font-weight: 300;
}

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

.intro-story h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-story p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.cards-showcase {
    padding: 80px 0;
    background: #ffffff;
}

.cards-showcase h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    width: calc(50% - 15px);
    max-width: 500px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.card-image {
    height: 300px;
    overflow: hidden;
    background: #ecf0f1;
}

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

.card-body {
    padding: 25px;
}

.card-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-body p {
    font-size: 16px;
    color: #7f8c8d;
}

.problem-amplification {
    padding: 80px 0;
    background: #2c3e50;
    color: #fff;
}

.problem-amplification h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.problem-amplification p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.trust-building {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.testimonial {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #4a5568;
    margin-bottom: 10px;
}

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

.trust-image {
    flex: 1;
    background: #ecf0f1;
    border-radius: 12px;
    overflow: hidden;
}

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

.benefits-reveal {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-reveal h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

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

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

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

.benefit-item p {
    font-size: 16px;
    color: #4a5568;
}

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

.services-pricing h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
}

.price-card {
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    width: calc(33.333% - 17px);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
}

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

.price-card p {
    font-size: 15px;
    color: #7f8c8d;
    margin-bottom: 20px;
    min-height: 80px;
}

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

.btn-select {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.contact-form-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-form-section > p {
    text-align: center;
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.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%;
    background: #27ae60;
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    padding: 40px 0;
    background: #ecf0f1;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

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

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 2000;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
    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: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

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

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-box {
    max-width: 600px;
}

.thanks-box h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-box p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 15px;
}

.thanks-box .service-highlight {
    font-weight: 700;
    color: #2c3e50;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 18px;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

.about-section p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

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

.services-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-item {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-item h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
}

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

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

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.info-block {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.legal-page ul li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

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

    .product-card {
        width: 100%;
    }

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

    .price-card {
        width: 100%;
    }

    .nav-items {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

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

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