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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #34495e;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-notice {
    font-size: 0.8rem;
    color: #7f8c8d;
    border: 1px solid #e0e0e0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #34495e;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-section {
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 5rem 2rem;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-image {
    flex: 1;
    background-color: #e8eef3;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.intro-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.content-narrow h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.content-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.insight-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.split-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

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

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.insight-text {
    flex: 1;
}

.insight-text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.insight-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.story-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.benefits-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    display: block;
    background-color: #e8eef3;
}

.benefit-card h4 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.benefit-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
}

.testimonial-section {
    padding: 5rem 2rem;
    background-color: #34495e;
    color: white;
}

.testimonial-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.testimonial p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    font-size: 0.95rem;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.1rem;
    color: #555;
}

.services-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-item p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-item .price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    margin-bottom: 2rem;
    color: #555;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.btn-submit {
    background-color: #27ae60;
    color: white;
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%;
}

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

.trust-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.trust-section h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff9e6;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 4px solid #f39c12;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
    font-size: 0.95rem;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #455a64;
    text-align: center;
    color: #bdc3c7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: white;
    padding: 1.5rem;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #95a5a6;
    color: white;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-header {
    padding: 4rem 2rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.page-header p {
    font-size: 1.1rem;
    color: #7f8c8d;
}

.about-content {
    padding: 3rem 2rem;
}

.about-main {
    max-width: 900px;
    margin: 0 auto;
}

.about-main img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-bottom: 3rem;
    background-color: #e8eef3;
}

.text-block {
    margin-bottom: 3rem;
}

.text-block h2 {
    font-size: 1.9rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.text-block p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.split-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.split-text p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #555;
}

.split-image {
    flex: 1;
    background-color: #e8eef3;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
}

.value-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 0.95rem;
    color: #555;
}

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detailed {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

.service-header h2 {
    font-size: 1.8rem;
    color: #2c3e50;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #3498db;
}

.service-detailed img {
    width: 100%;
    height: 400px;
    display: block;
    background-color: #e8eef3;
}

.service-description {
    padding: 2rem;
}

.service-description p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
    line-height: 1.7;
}

.service-description h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2c3e50;
}

.service-description ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-description ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    padding: 4rem 2rem;
    background-color: #3498db;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: #3498db;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #f8f9fa;
}

.contact-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.contact-info {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.info-block {
    flex: 1;
    min-width: 250px;
}

.info-block h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.info-block p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.info-block .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-image {
    margin-bottom: 3rem;
    background-color: #e8eef3;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.contact-text {
    text-align: center;
}

.contact-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-text p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.contact-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-button:hover {
    background-color: #2980b9;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.next-steps {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.next-steps ol {
    margin-left: 1.5rem;
}

.next-steps ol li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.6;
}

.back-button {
    display: inline-block;
    background-color: #3498db;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    margin-top: 1.5rem;
    transition: background-color 0.3s;
}

.back-button:hover {
    background-color: #2980b9;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.legal-page h1 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.6rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page h4 {
    font-size: 1.1rem;
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul li {
    margin-bottom: 0.5rem;
    color: #555;
    line-height: 1.6;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-page table th,
.legal-page table td {
    border: 1px solid #ddd;
    padding: 0.8rem;
    text-align: left;
}

.legal-page table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

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

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 1rem 2rem;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        flex-direction: column;
        padding: 3rem 1rem;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

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

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

    .testimonial-container {
        flex-direction: column;
    }

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

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

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

    .service-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}