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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #229954;
}

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

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

.nav-menu a:hover {
    color: #27ae60;
}

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

.hero-card {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    margin: 30px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding: 60px 50px;
    background-color: #ecf8f3;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #d5f4e6;
}

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

.cta-button {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.intro-cards {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.card-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 20px;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.info-card h3 {
    color: #27ae60;
    font-size: 22px;
    margin-bottom: 15px;
}

.info-card p {
    color: #555;
    line-height: 1.7;
}

.services-preview {
    padding: 70px 0;
    background-color: #ffffff;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin: 20px 0;
}

.select-service {
    background-color: #27ae60;
    color: #ffffff;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 70px 0;
    background-color: #ecf8f3;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.form-card > p {
    text-align: center;
    color: #555;
    margin-bottom: 35px;
    font-size: 16px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-button {
    background-color: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    padding: 70px 0;
    background-color: #f8f9fa;
}

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

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.trust-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.trust-card h4 {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 15px;
}

.trust-card p {
    color: #555;
    line-height: 1.7;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
    margin-top: 50px;
}

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

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

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

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

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

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

.footer-column a:hover {
    color: #27ae60;
}

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

.footer-disclaimer {
    background-color: #34495e;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ecf0f1;
    padding: 20px;
    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;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cookie-accept:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

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

.cookie-reject:hover {
    background-color: #7f8c8d;
    transform: translateY(-2px);
}

.page-header {
    background-color: #27ae60;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.about-intro {
    padding: 50px 0;
    background-color: #ffffff;
}

.about-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d5f4e6;
}

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

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

.about-text h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 18px;
}

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

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

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

.value-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 15px;
}

.value-card p {
    color: #555;
    line-height: 1.7;
}

.expertise-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.expertise-section h2 {
    text-align: center;
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 50px;
}

.expertise-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.expertise-card {
    flex: 1 1 calc(50% - 12.5px);
    min-width: 280px;
    background-color: #ecf8f3;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.expertise-card h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.expertise-card p {
    color: #555;
    line-height: 1.7;
}

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

.mission-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.mission-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.cta-link {
    display: inline-block;
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #229954;
}

.services-detailed {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px 40px;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.service-detail-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 20px;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 15px;
}

.service-detail-content ul {
    color: #555;
    line-height: 1.9;
    margin-left: 20px;
    margin-bottom: 25px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin: 25px 0 20px;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #d5f4e6;
}

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

.contact-cta {
    padding: 60px 0;
    background-color: #ffffff;
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ecf8f3;
    padding: 50px 40px;
    border-radius: 12px;
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.contact-page {
    padding: 50px 0;
    background-color: #f8f9fa;
}

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

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.contact-info-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 35px;
}

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

.contact-item h3 {
    font-size: 18px;
    color: #27ae60;
    margin-bottom: 10px;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    background-color: #d5f4e6;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.9);
    color: #ffffff;
    padding: 20px;
}

.map-overlay p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.visit-info {
    padding: 50px 0;
    background-color: #ffffff;
}

.visit-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ecf8f3;
    padding: 40px 35px;
    border-radius: 12px;
}

.visit-card h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.visit-card p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.business-hours-detailed {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.business-hours-detailed h2 {
    text-align: center;
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 40px;
}

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.hours-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 35px 30px;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.hours-card h4 {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 15px;
}

.hours-card p {
    color: #555;
    line-height: 1.7;
}

.thanks-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    color: #27ae60;
    margin-bottom: 20px;
}

.thanks-card h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-main {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #ecf8f3;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.thanks-details p {
    margin: 8px 0;
    color: #2c3e50;
}

.thanks-info {
    margin: 40px 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-info p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.thanks-next-steps h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.thanks-next-steps ul {
    color: #555;
    line-height: 1.9;
    margin-left: 20px;
}

.thanks-next-steps ul li {
    margin-bottom: 10px;
}

.thanks-next-steps a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.thanks-next-steps a:hover {
    color: #229954;
}

.legal-page {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.legal-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
    font-style: italic;
    border-left: 4px solid #27ae60;
    padding-left: 20px;
}

.legal-content h2 {
    font-size: 26px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #27ae60;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #34495e;
    margin-top: 20px;
    margin-bottom: 12px;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    color: #555;
    line-height: 1.9;
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #229954;
}

.legal-date {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 2px solid #ecf0f1;
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

@media (max-width: 768px) {
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }

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

    .hero-content {
        padding: 40px 30px;
    }

    .page-header h1 {
        font-size: 32px;
    }

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

    .value-card,
    .expertise-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 15px 20px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        margin-top: 15px;
    }

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

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .form-card {
        padding: 30px 20px;
    }

    .legal-content {
        padding: 30px 20px;
    }
}