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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.ad-notice {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

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

.brand-logo {
    font-size: 26px;
    font-weight: 700;
    color: #4a90e2;
}

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

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #1a2332;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.85), rgba(26, 35, 50, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    padding: 30px;
    color: #fff;
}

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

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #27ae60;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

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

.story-container {
    max-width: 700px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.story-container p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.insight-section {
    padding: 80px 30px;
    background-color: #fff;
}

.insight-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.citation {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.insight-image {
    flex: 1;
    background-color: #e8f4f8;
}

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

.problem-amplification {
    padding: 80px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

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

.problem-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

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

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

.solution-reveal {
    padding: 80px 30px;
    background-color: #fff;
}

.solution-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
    flex-direction: row-reverse;
}

.solution-text {
    flex: 1;
}

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

.solution-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #555;
}

.solution-image {
    flex: 1;
    background-color: #fef5e7;
}

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

.testimonials-inline {
    padding: 80px 30px;
    background-color: #ecf0f1;
}

.testimonials-container {
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #2c3e50;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-item {
    background-color: #fff;
    padding: 30px;
    border-left: 4px solid #4a90e2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #333;
}

.testimonial-author {
    font-size: 15px;
    font-weight: 600;
    color: #666;
}

.benefits-reveal {
    padding: 80px 30px;
    background-color: #fff;
}

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

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

.benefits-intro {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    color: #555;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-showcase {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.product-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
}

.product-block:nth-child(even) {
    flex-direction: row-reverse;
}

.product-block img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.product-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555;
    line-height: 1.6;
}

.product-composition {
    font-size: 14px;
    color: #666;
    background-color: #fff;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

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

.btn-select {
    padding: 12px 28px;
    background-color: #4a90e2;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.cta-emphasis {
    padding: 80px 30px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #fff;
    color: #f5576c;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-section {
    padding: 80px 30px;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
    text-align: center;
}

.form-subtitle {
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit {
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-container {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #4a90e2;
}

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

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

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

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

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

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

.references-list li {
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.references-list a {
    color: #4a90e2;
    text-decoration: none;
}

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

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 30px;
    background-color: #fff;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.content-container p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.7;
}

.content-container ul,
.content-container ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-container ul li,
.content-container ol li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 30px;
    background-color: #f8f9fa;
    text-align: center;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 60px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.thanks-container p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.thanks-service {
    font-weight: 700;
    color: #4a90e2;
}

.btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4a90e2;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

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

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

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

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

.contact-info-section {
    padding: 80px 30px;
    background-color: #fff;
}

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

.contact-info-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-info-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #4a90e2;
}

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

.contact-info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .insight-wrapper,
    .solution-wrapper {
        flex-direction: column;
    }

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

    .product-block {
        flex-direction: column;
    }

    .product-block:nth-child(even) {
        flex-direction: column;
    }

    .product-block img {
        width: 100%;
    }

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

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