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

:root {
    --primary-color: #2c5f7c;
    --secondary-color: #4a9eba;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --background-light: #f8f9fa;
    --background-dark: #1a2332;
    --white: #ffffff;
    --border-color: #dfe6e9;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.ad-disclosure {
    background-color: var(--background-dark);
    color: var(--white);
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.floating-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 29px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-visual {
    width: 100%;
    margin-top: 0;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: var(--background-dark);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 124, 0.85), rgba(74, 158, 186, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
}

.hero-overlay p {
    color: var(--white);
    font-size: 20px;
    max-width: 700px;
}

section {
    padding: 80px 5%;
}

.narrow-content {
    max-width: 800px;
    margin: 0 auto;
}

.wide-content {
    max-width: 1200px;
    margin: 0 auto;
}

.centered-content {
    max-width: 1000px;
    margin: 0 auto;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.story-intro p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.story-intro img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
    object-fit: cover;
}

.insight-section {
    background-color: var(--background-light);
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.insight-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.citation {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
}

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

.insight-image {
    flex: 1;
}

.insight-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.full-width-dark {
    background-color: var(--background-dark);
    color: var(--white);
}

.problem-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.problem-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 35px;
    border-radius: 8px;
}

.problem-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.problem-card p {
    font-size: 16px;
    line-height: 1.7;
}

.testimonials-inline h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
    text-align: center;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 30px;
    background-color: var(--background-light);
    border-left: 4px solid var(--accent-color);
    border-radius: 4px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-light);
    font-weight: 600;
}

.asymmetric-layout {
    display: flex;
    gap: 50px;
    align-items: center;
}

.benefits-image {
    flex: 0.9;
}

.benefits-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.benefits-list {
    flex: 1.1;
}

.benefits-list h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.benefits-list ul {
    list-style: none;
}

.benefits-list li {
    font-size: 18px;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 22px;
}

.products-section {
    background-color: var(--background-light);
}

.products-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.products-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    font-size: 22px;
    margin: 20px 20px 15px;
    color: var(--primary-color);
}

.product-card p {
    margin: 0 20px 15px;
    font-size: 15px;
    color: var(--text-dark);
}

.product-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 20px 15px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: var(--secondary-color);
}

.composition-list {
    list-style: none;
    margin-top: 30px;
}

.composition-list li {
    font-size: 17px;
    margin-bottom: 20px;
    padding-left: 25px;
    position: relative;
}

.composition-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

.trust-image {
    flex: 1;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cta-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
}

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

.centered-cta h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--white);
}

.centered-cta p {
    font-size: 18px;
    margin-bottom: 35px;
    color: var(--white);
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

.order-form-section {
    background-color: var(--background-light);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    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: var(--secondary-color);
}

.submit-button {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.disclaimer-section {
    background-color: #fff8e1;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

.references-section {
    background-color: var(--background-light);
}

.references-section h3 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

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

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

.references-list a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

footer {
    background-color: var(--background-dark);
    color: var(--white);
    padding: 60px 5% 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p,
.footer-section ul {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--white);
}

.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: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 35, 50, 0.95);
    color: var(--white);
    padding: 25px 5%;
    z-index: 10000;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.3);
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 100px 5%;
    text-align: center;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 20px;
}

.services-detailed {
    padding: 80px 5%;
}

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

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.service-benefits {
    list-style: none;
    margin-bottom: 25px;
}

.service-benefits li {
    font-size: 16px;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.service-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: var(--secondary-color);
}

.cta-section {
    background-color: var(--background-light);
}

.about-story img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-story p {
    font-size: 18px;
    margin-bottom: 20px;
}

.mission-section {
    background-color: var(--background-light);
}

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

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.mission-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-dark);
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--primary-color);
    text-align: center;
}

.approach-section {
    background-color: var(--background-light);
}

.approach-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.approach-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.approach-section img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
    object-fit: cover;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.partners-list {
    list-style: none;
}

.partners-list li {
    font-size: 17px;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.partners-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
}

.contact-map {
    flex: 1;
}

.contact-map img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
    object-fit: cover;
}

.map-caption {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.faq-section {
    background-color: var(--background-light);
}

.faq-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
    text-align: center;
}

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-dark);
}

.legal-page {
    padding: 60px 5%;
    background-color: var(--background-light);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content li {
    font-size: 16px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: none;
}

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

.thanks-section {
    padding: 100px 5%;
    background-color: var(--background-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.thanks-icon {
    font-size: 72px;
    color: var(--accent-color);
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.service-confirmation {
    font-size: 16px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.thanks-info {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

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

    .offset-layout,
    .asymmetric-layout,
    .split-trust,
    .service-item,
    .split-layout,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

    section {
        padding: 50px 5%;
    }
}