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

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

.main-nav {
    background-color: #2c3e50;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.hero-section {
    display: flex;
    min-height: 500px;
    background-color: #34495e;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    color: #fff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.hero-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.benefits-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: left;
}

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

.benefit-card p {
    color: #666;
}

.services-overview {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.services-header p {
    font-size: 1.1rem;
    color: #666;
}

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

.service-item {
    display: flex;
    background-color: #fff;
    overflow: hidden;
}

.service-item:nth-child(odd) {
    background-color: #f8f9fa;
}

.service-image {
    flex: 1;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-content p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.05rem;
}

.price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 1rem;
}

.process-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.process-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.step {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step p {
    color: #666;
}

.form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: #666;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 80px 20px;
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-weight: bold;
    color: #3498db;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p {
    color: #bdc3c7;
    line-height: 1.8;
}

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

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

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

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

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

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

.disclaimer {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 15px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #95a5a6;
    color: #fff;
}

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

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
}

.about-content {
    padding: 80px 20px;
    background-color: #fff;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
}

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    text-align: left;
}

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

.value-item p {
    color: #666;
}

.team-section {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
}

.team-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

.team-image {
    max-width: 1200px;
    margin: 0 auto 2rem;
    border-radius: 8px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
}

.team-text {
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    font-size: 1.05rem;
}

.philosophy-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

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

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

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

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

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail {
    display: flex;
    margin-bottom: 80px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-image {
    flex: 1;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.service-detail-content {
    flex: 1;
    padding: 50px;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.price-large {
    font-size: 2rem;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}

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

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

.included-services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.included-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.included-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    text-align: left;
}

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

.included-item p {
    color: #666;
}

.pricing-note {
    padding: 60px 20px;
    background-color: #fff;
}

.note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 5px;
}

.note-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #856404;
}

.note-content p {
    color: #856404;
    margin-bottom: 1rem;
}

.contact-info-section {
    padding: 60px 20px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1.5;
}

.contact-details h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.contact-block p {
    color: #555;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.contact-image img {
    width: 100%;
    height: 100%;
}

.location-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    text-align: center;
}

.location-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.visit-info {
    padding: 80px 20px;
    background-color: #fff;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.service-area h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-area p {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.region-list {
    max-width: 600px;
    margin: 2rem auto;
    list-style: none;
    text-align: left;
}

.region-list li {
    padding: 15px 20px;
    background-color: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #555;
}

.thanks-section {
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #555;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 8px;
    margin-bottom: 3rem;
    color: #2e7d32;
    font-weight: 600;
}

.next-steps {
    margin: 3rem 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-num {
    font-size: 1.5rem;
    font-weight: bold;
    color: #3498db;
    min-width: 40px;
}

.step-item p {
    color: #555;
}

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

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-primary {
    background-color: #3498db;
    color: #fff;
}

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

.btn-secondary {
    background-color: #95a5a6;
    color: #fff;
}

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

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

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

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

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #34495e;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #555;
}

.legal-container ul {
    margin: 1rem 0 1rem 2rem;
    color: #555;
}

.legal-container ul li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}

.cookie-table {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-table h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.cookie-table p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-section {
        flex-direction: column;
    }

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

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

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

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

    .testimonials {
        flex-direction: column;
    }

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

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

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

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

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

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