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

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
}

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

.main-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2a2a2a;
}

.hero-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 900px;
    padding: 0 40px;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 35px;
    font-weight: 300;
    line-height: 1.5;
}

.hero-cta {
    display: inline-block;
    padding: 16px 45px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.content-wrapper.narrow {
    max-width: 900px;
}

.story-intro {
    padding: 100px 0;
    background-color: #fafafa;
}

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

.story-intro p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.image-break {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

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

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

.text-side {
    flex: 1;
}

.text-side h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #222;
}

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

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

.problem-list li {
    padding: 15px 0 15px 30px;
    position: relative;
    font-size: 17px;
    color: #444;
    line-height: 1.6;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-size: 28px;
    font-weight: bold;
}

.image-side {
    flex: 1;
    background-color: #f5f5f5;
}

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

.insight-reveal {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.insight-reveal h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #222;
}

.insight-reveal p {
    font-size: 19px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.citation {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #45a049;
}

.trust-building {
    padding: 100px 0;
    background-color: #fff;
}

.trust-building h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #222;
}

.trust-cards {
    display: flex;
    gap: 40px;
}

.trust-card {
    flex: 1;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 6px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-icon {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

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

.testimonials-inline {
    padding: 100px 0;
    background-color: #2c3e50;
}

.testimonial {
    margin-bottom: 50px;
    padding: 40px;
    background-color: rgba(255,255,255,0.05);
    border-left: 4px solid #4CAF50;
}

.testimonial:last-child {
    margin-bottom: 0;
}

.testimonial-text {
    font-size: 20px;
    font-style: italic;
    color: #ecf0f1;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.benefits-reveal {
    padding: 100px 0;
    background-color: #fff;
}

.benefits-reveal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #222;
}

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

.benefit-item {
    flex: 1;
    background-color: #f9f9f9;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

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

.benefit-item h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #222;
}

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

.product-showcase {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.product-showcase h2 {
    font-size: 42px;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.products-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.product-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

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

.product-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px;
    color: #222;
}

.product-card p {
    font-size: 16px;
    margin: 0 30px 15px;
    color: #666;
    line-height: 1.6;
}

.product-features {
    font-size: 15px;
    color: #777;
    margin: 0 30px 20px;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #4CAF50;
    margin: 20px 30px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 0;
    background-color: #fff;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    text-align: center;
    color: #222;
}

.form-section > .content-wrapper > p {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f9f9f9;
    padding: 50px;
    border-radius: 6px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #4CAF50;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.final-cta {
    padding: 100px 0;
    background-color: #34495e;
    text-align: center;
}

.final-cta h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: #4CAF50;
    color: #fff;
    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: #45a049;
    transform: translateY(-2px);
}

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

.disclaimer {
    font-size: 14px;
    color: #777;
    line-height: 1.8;
    padding: 25px;
    background-color: #fff;
    border-left: 4px solid #f39c12;
    border-radius: 4px;
}

.references-section {
    padding: 60px 0;
    background-color: #fff;
}

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

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

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

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

.references-list a:hover {
    color: #45a049;
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 0;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

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

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

.footer-bottom {
    background-color: #111;
    padding: 25px 40px;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    padding: 25px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    gap: 30px;
}

.cookie-content p {
    color: #ecf0f1;
    font-size: 16px;
    flex: 1;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: #4CAF50;
    color: #fff;
}

.cookie-btn.accept:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background-color: #e74c3c;
    color: #fff;
}

.cookie-btn.reject:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

.page-header {
    padding: 80px 0 60px;
    background-color: #f5f5f5;
    text-align: center;
}

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

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

.about-content,
.services-content,
.contact-content,
.legal-content {
    padding: 80px 0;
}

.about-intro h2,
.values-section h2,
.approach-section h2,
.mission-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #222;
}

.about-intro p,
.approach-section p,
.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.about-image-section {
    margin: 60px 0;
    background-color: #f0f0f0;
}

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

.values-section {
    margin: 60px 0;
}

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

.value-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #222;
}

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

.mission-section {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro p {
    font-size: 18px;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-item {
    display: flex;
    gap: 50px;
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.service-image {
    flex: 0 0 45%;
    background-color: #f0f0f0;
}

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

.service-details {
    flex: 1;
    padding: 40px;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.service-description {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

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

.service-features ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.service-features ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.service-price {
    font-size: 26px;
    font-weight: bold;
    color: #4CAF50;
    margin: 20px 0;
}

.cta-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

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

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 35px;
}

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

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #222;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #222;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.email-text {
    color: #555;
}

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #4CAF50;
    border-radius: 4px;
}

.contact-note p {
    font-size: 16px;
    color: #666;
}

.contact-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.map-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #222;
}

.map-section p {
    font-size: 17px;
    color: #666;
    line-height: 1.7;
}

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

.thanks-content {
    text-align: center;
    background-color: #fff;
    padding: 70px 50px;
    border-radius: 6px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.thanks-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #222;
}

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

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: #fff;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #34495e;
    color: #fff;
}

.btn-secondary:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
}

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

.next-steps h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #222;
}

.steps-list {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
    display: flex;
    gap: 20px;
}

.step-number {
    flex: 0 0 60px;
    height: 60px;
    background-color: #4CAF50;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    border-radius: 50%;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

.step-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

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

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

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

.legal-content a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #45a049;
    text-decoration: underline;
}

.legal-content strong {
    color: #222;
}

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

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

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #222;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 1200px) {
    .trust-cards,
    .benefits-grid {
        flex-direction: column;
    }

    .products-layout .product-card {
        flex: 0 0 100%;
    }
}

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

    .main-nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

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

    .split-content,
    .contact-info-layout {
        flex-direction: column;
    }

    .values-grid .value-item {
        flex: 0 0 100%;
    }

    .service-item {
        flex-direction: column;
    }

    .service-image {
        flex: 0 0 300px;
    }

    .steps-list {
        flex-direction: column;
    }

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

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

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}