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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 36px;
    z-index: 999;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    text-decoration: none;
    color: #546e7a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
}

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

.main-nav a.active {
    color: #e67e22;
    border-bottom: 2px solid #e67e22;
    padding-bottom: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

.hero-image-container {
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(230, 126, 34, 0.75));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 20px;
    color: #ecf0f1;
    max-width: 700px;
    line-height: 1.6;
}

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

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 30px;
}

.container-wide {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 30px;
}

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

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

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

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

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

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

.split-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #546e7a;
}

.problem-list {
    list-style: none;
    padding: 0;
}

.problem-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #546e7a;
}

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

.insight-section {
    background-color: #ecf0f1;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.insight-section p {
    font-size: 18px;
    margin-bottom: 22px;
    color: #546e7a;
}

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 35px;
    border-left: 4px solid #e67e22;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 20px;
    font-style: italic;
}

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

.benefits-section {
    background-color: #2c3e50;
    color: #ffffff;
}

.benefits-section h2 {
    font-size: 36px;
    margin-bottom: 45px;
    text-align: center;
    color: #ffffff;
    font-weight: 700;
}

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

.benefit-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e67e22;
    font-weight: 600;
}

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

.services-showcase {
    background-color: #f8f9fa;
}

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 55px;
    color: #2c3e50;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
}

.service-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e1e8ed;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #546e7a;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin: 20px 25px;
}

.select-service-btn {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 0;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #d35400;
}

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

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

.cta-section p {
    font-size: 19px;
    color: #ecf0f1;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 35px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e1e8ed;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.checkbox-group label {
    flex-direction: row;
    align-items: center;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.checkbox-group a {
    color: #e67e22;
}

.submit-btn {
    padding: 16px 0;
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 50px 30px;
}

.disclaimer-text {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-column ul li a {
    text-decoration: none;
    color: #bdc3c7;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #e67e22;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 25px 30px;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.cookie-btn.reject:hover {
    background-color: #566573;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.page-hero .lead {
    font-size: 20px;
    color: #ecf0f1;
}

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

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

.values-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 18px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #e67e22;
    font-weight: 600;
}

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

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

.experience-section h2 {
    font-size: 36px;
    margin-bottom: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.experience-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
}

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

.approach-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #e67e22;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.approach-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.approach-step p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.cta-simple {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 18px;
    color: #ffffff;
    font-weight: 700;
}

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

.cta-link {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #d35400;
}

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

.service-detail-card {
    margin-bottom: 60px;
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

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

.service-detail-content ul li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 18px;
}

.price-tag {
    font-size: 26px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 20px;
}

.detail-cta {
    display: inline-block;
    padding: 14px 35px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.detail-cta:hover {
    background-color: #d35400;
}

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

.services-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.services-note p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #546e7a;
}

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

.contact-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-card p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #546e7a;
    line-height: 1.7;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #e67e22;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-cta {
    display: inline-block;
    margin-top: 15px;
    padding: 14px 35px;
    background-color: #e67e22;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.contact-cta:hover {
    background-color: #d35400;
}

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

.location-section h2 {
    font-size: 32px;
    margin-bottom: 22px;
    color: #2c3e50;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    background-color: #ffffff;
    min-height: 500px;
}

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

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

.thanks-message {
    font-size: 19px;
    margin-bottom: 35px;
    color: #546e7a;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid #e67e22;
}

.selected-service-info p {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 8px;
}

.next-steps {
    margin: 40px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.next-steps ol {
    max-width: 600px;
    margin: 0 auto;
    padding-left: 25px;
}

.next-steps ol li {
    font-size: 17px;
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #566573;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.update-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #546e7a;
    line-height: 1.8;
}

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

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-page a:hover {
    color: #d35400;
}

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

.gdpr-table thead,
.cookies-table thead {
    background-color: #ecf0f1;
}

.gdpr-table th,
.cookies-table th {
    padding: 12px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    border: 1px solid #bdc3c7;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    font-size: 15px;
    color: #546e7a;
    border: 1px solid #bdc3c7;
}

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

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        border-top: 1px solid #e1e8ed;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        padding: 15px 30px;
        border-bottom: 1px solid #e1e8ed;
    }

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

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

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

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

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