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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f7f;
}

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

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

.nav-links a:hover {
    color: #2c5f7f;
}

.ad-disclosure {
    background-color: #fef3cd;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #856404;
    border: 1px solid #ffeeba;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 1.5rem;
    z-index: 1000;
    transition: transform 0.3s;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.hero-text h1 {
    font-size: 3rem;
    color: #1a3a52;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: #2c5f7f;
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.intro-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.intro-card {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.services-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

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

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 1rem;
}

.select-service {
    background-color: #2c5f7f;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    margin: 4rem 0;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

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

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #2c5f7f;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #1a3a52;
}

.btn-primary {
    background-color: #2c5f7f;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #f1f1f1;
    color: #333;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

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

.testimonial-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.main-footer {
    background-color: #1a3a52;
    color: #fff;
    padding: 3rem 2rem 1rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
    opacity: 0.9;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section ul li a:hover {
    opacity: 1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.8;
}

.page-header {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.3rem;
    color: #555;
}

.about-content,
.contact-content,
.services-detailed {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.about-intro,
.mission-card,
.values-section,
.approach-section,
.commitment-section {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.about-intro h2,
.mission-card h2,
.values-section h2,
.approach-section h2,
.commitment-section h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.about-intro p,
.mission-card p,
.commitment-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.mission-list {
    list-style: none;
    padding-left: 0;
}

.mission-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: #555;
}

.mission-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f7f;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.value-card h3 {
    font-size: 1.3rem;
    color: #2c5f7f;
    margin-bottom: 0.5rem;
}

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

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

.approach-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5f7f;
}

.approach-card h4 {
    font-size: 1.2rem;
    color: #1a3a52;
    margin-bottom: 0.75rem;
}

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

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2c5f7f;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.service-detail-content p,
.service-detail-content ul {
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-content ul {
    padding-left: 1.5rem;
}

.price-display {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f7f;
    margin-bottom: 1rem;
}

.service-cta {
    display: inline-block;
    background-color: #2c5f7f;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #1a3a52;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-benefits {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-top: 3rem;
}

.service-benefits h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #2c5f7f;
    margin-bottom: 0.5rem;
}

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

.contact-info-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.contact-main-info,
.contact-additional {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-main-info h2,
.contact-additional h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.contact-main-info p,
.contact-additional p {
    color: #555;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    color: #2c5f7f;
    margin-bottom: 0.5rem;
}

.contact-additional ul {
    padding-left: 1.5rem;
    color: #555;
}

.contact-additional a {
    color: #2c5f7f;
    text-decoration: none;
}

.contact-additional a:hover {
    text-decoration: underline;
}

.location-info,
.visit-note {
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.location-info h2,
.visit-note h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 1.5rem;
}

.location-info p,
.visit-note p {
    color: #555;
    margin-bottom: 1rem;
}

.location-info ul {
    padding-left: 1.5rem;
    color: #555;
}

.thanks-section {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.thanks-container {
    background-color: #fff;
    padding: 4rem 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c5f7f;
    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;
    color: #1a3a52;
    margin-bottom: 1rem;
}

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

.thanks-details {
    text-align: left;
    margin-bottom: 3rem;
}

.thanks-details h2 {
    font-size: 2rem;
    color: #1a3a52;
    margin-bottom: 2rem;
    text-align: center;
}

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

.step-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

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

.step-item h3 {
    font-size: 1.2rem;
    color: #1a3a52;
    margin-bottom: 0.75rem;
}

.step-item p {
    color: #666;
    font-size: 0.95rem;
}

.selected-service-info {
    background-color: #f0f8ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2c5f7f;
}

.selected-service-info h3 {
    font-size: 1.3rem;
    color: #1a3a52;
    margin-bottom: 0.5rem;
}

.selected-service-info p {
    color: #2c5f7f;
    font-weight: 600;
    font-size: 1.1rem;
}

.thanks-additional {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-additional h2 {
    font-size: 1.5rem;
    color: #1a3a52;
    margin-bottom: 1rem;
}

.thanks-additional p {
    color: #555;
    margin-bottom: 0.5rem;
}

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

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
    background-color: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

.legal-page h2 {
    font-size: 1.8rem;
    color: #2c5f7f;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.3rem;
    color: #1a3a52;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

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

.legal-page ul {
    padding-left: 2rem;
}

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

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

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

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

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

    .step-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}