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

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

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

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

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

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

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

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

.nav-links a:hover {
    color: #4a9eff;
}

.ad-label {
    font-size: 0.75rem;
    color: #999;
    padding: 0.25rem 0.75rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.hero {
    position: relative;
    width: 100%;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.intro-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.intro-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.intro-card p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.services-preview {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 1.5rem);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.card-content p {
    color: #666;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.btn-select {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background-color: #2563eb;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #1d4ed8;
}

.contact-form-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.form-card {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-card > p {
    color: #666;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: #16a34a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.why-us {
    padding: 5rem 0;
}

.why-us h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.feature-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding-top: 3rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

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

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

.footer-column p {
    color: #999;
    font-size: 0.9rem;
}

.footer-disclaimer {
    background-color: #2a2a2a;
    padding: 1.5rem 0;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #aaa;
    text-align: center;
}

.footer-bottom {
    background-color: #0a0a0a;
    padding: 1rem 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.9rem;
    cursor: pointer;
    background-color: #2563eb;
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #1d4ed8;
}

.btn-cookie.secondary {
    background-color: #555;
}

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

.page-header {
    background-color: #f8f9fa;
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.125rem;
    color: #666;
}

.about-content {
    padding: 4rem 0;
}

.about-intro-card {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.about-intro-card h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.about-intro-card p {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
}

.story-section {
    margin-bottom: 3rem;
}

.story-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.story-image {
    width: 40%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    min-height: 400px;
}

.story-text {
    width: 60%;
    padding: 2rem;
}

.story-text h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.story-text p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 3rem;
}

.values-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.value-card p {
    color: #666;
    line-height: 1.8;
}

.expertise-section {
    margin-bottom: 3rem;
}

.expertise-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    text-align: center;
}

.expertise-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.expertise-card {
    display: flex;
    gap: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.expertise-image {
    width: 300px;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
}

.expertise-content {
    flex: 1;
    padding: 2rem;
}

.expertise-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.expertise-content p {
    color: #666;
    line-height: 1.8;
}

.team-approach {
    background-color: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

.team-approach h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.team-approach p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.services-detailed {
    padding: 4rem 0;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-detail-image {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    min-height: 400px;
}

.service-detail-content {
    width: 55%;
    padding: 3rem;
}

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

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: 700;
}

.contact-page {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info-card h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-map-card {
    flex: 1;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e9ecef;
    border-radius: 8px;
    position: relative;
    min-height: 400px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    color: #ffffff;
    text-align: center;
}

.additional-info {
    margin-bottom: 3rem;
}

.additional-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.info-cards {
    display: flex;
    gap: 2rem;
}

.info-card {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

.info-card p {
    color: #666;
    line-height: 1.8;
}

.business-info {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.business-info h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.business-info p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1.5rem;
    border-radius: 4px;
}

.disclaimer-box h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #856404;
}

.disclaimer-box p {
    color: #856404;
    line-height: 1.8;
}

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

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

.thanks-icon {
    font-size: 4rem;
    color: #16a34a;
    margin-bottom: 1.5rem;
}

.thanks-card h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.service-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-info p {
    font-size: 1rem;
    color: #555;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.step-card {
    flex: 1;
    max-width: 200px;
    text-align: center;
}

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

.step-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.step-card p {
    font-size: 0.875rem;
    color: #666;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #6b7280;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 4rem 0;
}

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

.legal-content {
    max-width: 900px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

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

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    color: #666;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-date {
    margin-top: 3rem;
    font-style: italic;
    color: #999;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

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

    .service-card {
        width: 100%;
    }

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

    .feature-card {
        width: 100%;
    }

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

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

    .story-card {
        flex-direction: column;
    }

    .story-image {
        width: 100%;
        min-height: 300px;
    }

    .story-text {
        width: 100%;
    }

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

    .value-card {
        width: 100%;
    }

    .expertise-card {
        flex-direction: column;
    }

    .expertise-image {
        width: 100%;
        min-height: 250px;
    }

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

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

    .service-detail-content {
        width: 100%;
    }

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

    .info-cards {
        flex-direction: column;
    }

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

    .step-card {
        max-width: 100%;
    }

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