* {
    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.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.navbar {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 30px;
    max-width: 550px;
}

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

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

.intro-section {
    padding: 80px 0;
    background-color: #fff;
}

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

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

.split-text {
    flex: 1;
}

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

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

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

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

.services-preview {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #fff;
    width: calc(33.333% - 20px);
    border: 1px solid #e9ecef;
    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-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: #dee2e6;
}

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

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin: 0 25px 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #007bff;
    margin: 0 25px 20px;
}

.cta-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 28px;
    background-color: #007bff;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-service:hover {
    background-color: #0056b3;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #007bff;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #fff;
}

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

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

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

.form-container > p {
    text-align: center;
    color: #6c757d;
    margin-bottom: 40px;
}

.selected-service-display {
    background-color: #e7f3ff;
    padding: 15px 20px;
    margin-bottom: 25px;
    border-left: 4px solid #007bff;
    color: #004085;
    font-weight: 600;
    display: none;
}

.selected-service-display.active {
    display: block;
}

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

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

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

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

.cta-submit {
    width: 100%;
    padding: 16px;
    background-color: #28a745;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-submit:hover {
    background-color: #218838;
}

.testimonials {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

.testimonials h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #adb5bd;
}

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

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

.cta-content p {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    border-top: 1px solid #495057;
    padding-top: 30px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #343a40;
    color: #fff;
    padding: 25px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.active {
    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;
    min-width: 300px;
    font-size: 15px;
}

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

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

.cookie-accept {
    background-color: #28a745;
    color: #fff;
}

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

.cookie-reject {
    background-color: #6c757d;
    color: #fff;
}

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

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

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

.page-header p {
    font-size: 20px;
    color: #adb5bd;
}

.about-intro {
    padding: 80px 0;
    background-color: #fff;
}

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

.mission-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
}

.mission-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-section h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
}

.team-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: #007bff;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-info p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
}

.values-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

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

.services-detailed {
    padding: 80px 0;
    background-color: #fff;
}

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

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

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

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

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

.service-detail-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.service-detail-content ul {
    margin-left: 20px;
    margin-bottom: 25px;
}

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

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

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

.service-price-box {
    background-color: #f8f9fa;
    padding: 25px;
    margin-top: 30px;
    border-left: 4px solid #007bff;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 20px;
}

.service-price-box .cta-service {
    width: 100%;
    margin: 0;
}

.contact-content {
    padding: 80px 0;
    background-color: #fff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 40px;
}

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

.contact-block h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
}

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

.location-info p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.6;
}

.location-info ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.location-info ul li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 8px;
}

.disclaimer-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.disclaimer-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 30px;
}

.disclaimer-section p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 15px;
    line-height: 1.7;
}

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

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 40px;
    border-left: 4px solid #007bff;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
}

.thanks-details strong {
    color: #2c3e50;
}

.thanks-next-steps {
    text-align: left;
    margin-bottom: 50px;
}

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

.thanks-next-steps ol {
    margin-left: 25px;
}

.thanks-next-steps ol li {
    font-size: 17px;
    color: #495057;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.legal-content {
    padding: 60px 0;
    background-color: #fff;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 40px;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    margin-top: 25px;
}

.legal-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    margin-top: 20px;
}

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

.legal-text ul,
.legal-text ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-text ul li,
.legal-text ol li {
    font-size: 16px;
    color: #495057;
    margin-bottom: 10px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

    .split-layout,
    .split-layout-reverse {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }

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

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}