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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    padding: 4px 10px;
    background-color: #f5f5f5;
    border-radius: 3px;
}

.main-nav {
    display: flex;
    gap: 25px;
}

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

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

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay img {
    width: 100%;
    height: 100%;
}

.hero-text-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(94, 114, 228, 0.75) 100%);
    display: flex;
    align-items: center;
}

.hero-text-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 22px;
    color: #e0e0e0;
    font-weight: 300;
}

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

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
}

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

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

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.insight-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.citation {
    color: #5e72e4;
    text-decoration: none;
    font-weight: 600;
}

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

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

.section-title-center {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.benefit-image {
    margin-bottom: 20px;
}

.benefit-image img {
    width: 100%;
    height: auto;
    display: block;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

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

.testimonial {
    border-left: 4px solid #5e72e4;
    padding-left: 30px;
    font-size: 22px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
}

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

.products-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.product-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

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

.product-image {
    flex: 1;
    min-width: 300px;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    flex: 1;
}

.product-info h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 700;
}

.product-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.7;
}

.product-price {
    font-size: 32px;
    font-weight: 800;
    color: #5e72e4;
    margin: 20px 0;
}

.btn-select {
    background-color: #5e72e4;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.selected-product-display {
    background-color: #f0f4ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    font-size: 18px;
    color: #1a1a2e;
}

.contact-form {
    max-width: 600px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #5e72e4;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.references-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.references-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.references-list a {
    color: #5e72e4;
    text-decoration: none;
}

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

.disclaimer-section {
    padding: 60px 0;
    background-color: #fff9e6;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-section p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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-buttons {
    display: flex;
    gap: 15px;
}

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

.btn-accept {
    background-color: #5e72e4;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 20px;
    color: #e0e0e0;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

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

.approach-section,
.commitment-section {
    padding: 80px 0;
}

.approach-section h2,
.commitment-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.approach-section p,
.commitment-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.services-intro {
    padding: 60px 0;
    background-color: #f9f9f9;
}

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

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

.service-item {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.service-item-reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.service-content ul {
    margin: 20px 0;
    padding-left: 25px;
}

.service-content ul li {
    font-size: 16px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #5e72e4;
    margin-top: 20px;
}

.service-image {
    flex: 1;
    min-width: 300px;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background-color: #5e72e4;
    color: #ffffff;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #4a5bc4;
}

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

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    display: block;
}

.additional-info {
    padding: 80px 0;
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.additional-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.8;
}

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

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

.thanks-content h1 {
    font-size: 48px;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #f0f4ff;
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    color: #1a1a2e;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

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

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

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

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

.btn-secondary:hover {
    background-color: #5e72e4;
    color: #ffffff;
}

.next-steps {
    padding: 80px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.steps-list {
    padding-left: 25px;
}

.steps-list li {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

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

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

.legal-content li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

    .main-nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .story-grid,
    .about-layout,
    .contact-layout,
    .service-item {
        flex-direction: column;
    }

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

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

    .benefits-grid,
    .values-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}