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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2c7a7b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #234e52;
}

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a7b;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    padding: 4px 10px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav a {
    font-weight: 500;
    color: #4a5568;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #2c7a7b;
}

.hero-section {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 900px;
}

.hero-overlay p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
}

.intro-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.services-intro p {
    font-size: 1.1rem;
    color: #718096;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

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

.service-content {
    padding: 25px;
}

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-content p {
    font-size: 0.95rem;
    color: #4a5568;
    margin-bottom: 15px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c7a7b;
    margin: 15px 0;
}

.btn-service {
    display: inline-block;
    padding: 12px 25px;
    background-color: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-service:hover {
    background-color: #234e52;
    transform: translateY(-2px);
}

.about-preview {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.25rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.about-text p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
}

.link-arrow {
    display: inline-block;
    margin-top: 15px;
    color: #2c7a7b;
    font-weight: 600;
}

.link-arrow:after {
    content: " →";
}

.about-image-wrapper {
    flex: 1;
    min-width: 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #e2e8f0;
}

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

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

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

.values-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c7a7b;
}

.value-item p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c7a7b 0%, #234e52 100%);
    color: #ffffff;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.btn-cta {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #2c7a7b;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6);
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    font-weight: 700;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2d3748;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #2d3748;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #2c7a7b;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #2c7a7b;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 0 20px;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer-section p {
    color: #cbd5e0;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #cbd5e0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.disclaimer {
    padding: 30px;
    background-color: #1a202c;
    border-radius: 8px;
    margin-bottom: 30px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
    font-size: 0.9rem;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #2c7a7b;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234e52;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.page-hero {
    padding: 80px 0 40px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.page-hero p {
    font-size: 1.2rem;
    color: #718096;
}

.content-section {
    padding: 60px 0;
}

.content-layout {
    display: flex;
    gap: 60px;
}

.content-main {
    flex: 1;
}

.content-main h2 {
    font-size: 2rem;
    margin: 40px 0 20px;
    color: #2d3748;
}

.content-main h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: #2c7a7b;
}

.content-main p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-main ul {
    margin: 20px 0 20px 30px;
    color: #4a5568;
}

.content-main ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.image-block {
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #edf2f7;
}

.testimonial-box {
    background-color: #f7fafc;
    padding: 30px;
    border-left: 4px solid #2c7a7b;
    margin: 40px 0;
    border-radius: 4px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 15px;
}

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

.team-values {
    padding: 80px 0;
    background-color: #f7fafc;
}

.team-values h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #2d3748;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: #2c7a7b;
}

.value-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.services-detail {
    padding: 60px 0;
}

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

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

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-features {
    margin: 25px 0 25px 25px;
    color: #4a5568;
}

.service-features li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.service-pricing {
    margin: 25px 0;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c7a7b;
}

.price-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 5px;
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #edf2f7;
}

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

.service-info {
    padding: 60px 0;
    background-color: #f7fafc;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2d3748;
}

.service-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.contact-section {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.contact-info p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #2c7a7b;
}

.contact-item p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.contact-note {
    background-color: #f7fafc;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c7a7b;
}

.contact-form-wrapper {
    flex: 1;
    background-color: #f7fafc;
    padding: 40px;
    border-radius: 8px;
}

.contact-form-wrapper h2 {
    margin-bottom: 25px;
    color: #2d3748;
}

.location-section {
    padding: 60px 0;
    background-color: #f7fafc;
}

.location-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.location-section p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.location-info {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 25px;
    border: 1px solid #e2e8f0;
}

.thanks-section {
    padding: 100px 0;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f7fafc;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info {
    margin: 50px 0;
}

.thanks-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d3748;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    text-align: left;
}

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

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

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: #2d3748;
}

.step-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.thanks-note {
    background-color: #fffaf0;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #ed8936;
    margin: 30px 0;
}

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

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

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

.btn-primary:hover {
    background-color: #234e52;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #e2e8f0;
    color: #2d3748;
}

.btn-secondary:hover {
    background-color: #cbd5e0;
    transform: translateY(-2px);
}

.legal-content {
    padding: 60px 0;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
    color: #2c7a7b;
}

.legal-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 15px 0 15px 30px;
    color: #4a5568;
}

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

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        justify-content: space-around;
    }

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

    .hero-overlay p {
        font-size: 1rem;
    }

    .about-layout,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .about-image-wrapper,
    .service-detail-image {
        min-width: 100%;
        height: 300px;
    }

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

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

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

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

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

    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }

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

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

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