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

.ad-disclosure {
    background-color: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-section {
    display: flex;
    flex-direction: column;
    background-color: #f8f9fa;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 20px 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.hero-image {
    width: 100%;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.link-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.link-button:hover {
    background-color: #3498db;
    color: #ffffff;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 20px;
}

.intro-section {
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    color: #555;
    margin: 0 25px 25px;
}

.services-preview {
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    gap: 30px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #555;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    white-space: nowrap;
}

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

.process-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-content p {
    font-size: 16px;
    color: #555;
}

.image-break {
    width: 100%;
    background-color: #e9ecef;
}

.image-break img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.testimonials-section {
    background-color: #ffffff;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial {
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial p {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: #7f8c8d;
}

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-section > .section-wrapper-narrow > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

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

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #bdc3c7;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px;
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: opacity 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.9;
}

.page-hero {
    background-color: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 20px;
    color: #555;
}

.about-content {
    background-color: #ffffff;
}

.content-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

.value-item p {
    font-size: 16px;
    color: #555;
}

.experience-section {
    background-color: #ffffff;
}

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

.experience-text {
    flex: 1;
}

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

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

.experience-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

.cta-section {
    background-color: #ffffff;
    text-align: center;
}

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

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

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-detailed {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-text {
    flex: 1;
}

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

.service-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 18px;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px solid #e9ecef;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
}

.pricing-note {
    background-color: #f8f9fa;
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.contact-section {
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 16px;
    color: #555;
}

.contact-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.response-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.response-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.area-section {
    background-color: #ffffff;
}

.area-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.area-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-section {
    background-color: #ffffff;
    padding: 100px 20px;
}

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

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

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

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

.next-steps {
    background-color: #f8f9fa;
}

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

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

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

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

.step-text h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.step-text p {
    font-size: 16px;
    color: #555;
}

.legal-page {
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

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

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

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

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

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

    .service-detailed,
    .service-detailed.reverse {
        flex-direction: column;
    }

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

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

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

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