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

.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-color: rgba(44, 62, 80, 0.98);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
}

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

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

.nav-main a:hover {
    color: #e74c3c;
}

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    border-left: 2px solid #e0e0e0;
    padding-left: 20px;
    font-style: italic;
}

.hero-visual {
    width: 100%;
    height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8), rgba(52, 73, 94, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text h1 {
    font-size: 62px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 26px;
    font-weight: 300;
    line-height: 1.5;
}

.story-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    margin-bottom: 35px;
    color: #34495e;
    font-weight: 400;
}

.story-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #555;
}

.story-section h2 {
    font-size: 38px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.inline-image-wrapper {
    margin: 50px 0;
}

.inline-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.highlight-box {
    background-color: #fff3cd;
    border-left: 5px solid #e74c3c;
    padding: 30px;
    margin: 40px 0;
    border-radius: 6px;
}

.highlight-box p {
    margin: 0;
    font-size: 18px;
    color: #856404;
}

.highlight-box sup a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.problem-amplification {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.split-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #555;
}

.split-image {
    flex: 1;
}

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

.insight-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 40px;
    margin-bottom: 35px;
    color: #2c3e50;
    font-weight: 700;
}

.insight-section p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #555;
}

.features-grid {
    display: flex;
    gap: 30px;
    margin: 50px 0;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 250px;
    background-color: #ecf0f1;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

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

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

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

.testimonial {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid #e74c3c;
}

.testimonial p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 600;
    color: #ecf0f1;
}

.product-reveal {
    padding: 90px 0;
    background-color: #ffffff;
}

.product-reveal h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.product-reveal > .container-narrow > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 50px;
    color: #555;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 50px;
}

.product-card {
    flex: 1;
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

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

.product-card img {
    width: 100%;
    height: 280px;
    background-color: #ecf0f1;
}

.product-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 600;
}

.product-card p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 25px 20px;
    color: #666;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin: 25px 25px 20px;
}

.btn-select {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 15px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #c0392b;
}

.composition-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.composition-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.composition-section > .container-narrow > p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #555;
}

.composition-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.composition-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #e74c3c;
}

.composition-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.composition-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.composition-item sup a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
}

.cta-form-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.cta-form-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.cta-form-section > .container-narrow > p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 45px;
    color: #666;
    text-align: center;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 45px;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    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: #e74c3c;
}

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

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

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.disclaimer-section {
    padding: 70px 0;
    background-color: #fff3cd;
}

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

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

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

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

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

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

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

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

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

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

.references-section {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.references-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

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

.references-list li {
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.references-list li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: #e74c3c;
}

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

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

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin: 0;
}

.about-content {
    padding: 90px 0;
    background-color: #ffffff;
}

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

.about-story p {
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #555;
}

.about-story h2 {
    font-size: 36px;
    margin-top: 60px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.about-image-wrapper {
    margin: 50px 0;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.values-section {
    margin: 60px 0;
    padding: 50px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.values-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item {
    margin-bottom: 35px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
    font-weight: 600;
}

.value-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.team-note {
    background-color: #e8f4f8;
    border-left: 5px solid #3498db;
    padding: 30px;
    margin-top: 50px;
    border-radius: 6px;
}

.team-note p {
    margin: 0;
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
}

.services-content {
    padding: 90px 0;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-intro p {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 20px 25px;
}

.product-features li {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-info {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.info-block {
    margin-bottom: 40px;
}

.info-block:last-child {
    margin-bottom: 0;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.contact-content {
    padding: 90px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-info {
    flex: 1;
}

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

.contact-item {
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #e74c3c;
    font-weight: 600;
}

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

.contact-note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.map-caption {
    font-size: 15px;
    color: #7f8c8d;
    margin-top: 15px;
    line-height: 1.6;
}

.contact-additional {
    margin-top: 80px;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.contact-methods {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.method-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
    border-top: 4px solid #e74c3c;
}

.method-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

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

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.order-summary {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
    margin-bottom: 60px;
    text-align: left;
}

.order-summary h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.order-summary p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.step-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #e74c3c;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #c0392b;
}

.btn-secondary {
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
}

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

.contact-support {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.contact-support p {
    font-size: 16px;
    color: #666;
    margin: 0;
}

.legal-content {
    padding: 90px 0;
    background-color: #ffffff;
}

.legal-update {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #555;
    font-weight: 600;
}

.legal-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-content ul,
.legal-content ol {
    margin: 20px 0 30px 25px;
    padding: 0;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #34495e;
    color: #ffffff;
}

.cookies-table th,
.cookies-table td {
    padding: 15px;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    font-size: 16px;
    font-weight: 600;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

.cookies-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

    .ad-disclosure {
        border-left: none;
        border-top: 2px solid #e0e0e0;
        padding-left: 0;
        padding-top: 10px;
        margin-top: 10px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-layout {
        flex-direction: column;
        gap: 50px;
    }

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

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
    }

    .cookies-table {
        font-size: 14px;
    }

    .cookies-table th,
    .cookies-table td {
        padding: 10px;
    }
}