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

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

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

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    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: 700;
    color: #c74343;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-section {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.hero-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #c74343;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.cta-button-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #555;
}

.link-button {
    display: inline-block;
    padding: 16px 32px;
    color: #c74343;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link-button:hover {
    color: #a33636;
}

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

.card-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.intro-card p {
    color: #666;
    font-size: 16px;
}

.services-overview {
    padding: 100px 20px;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

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

.service-card {
    background-color: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(50% - 16px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c74343;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #c74343;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #a33636;
}

.testimonials {
    background-color: #1a1a1a;
    color: #fff;
    padding: 100px 20px;
}

.testimonials h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-cards {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 36px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-section p {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
}

.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.5);
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    margin: 20px;
    padding: 40px;
    border-radius: 8px;
    width: 100%;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.service-display {
    padding: 12px 16px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-weight: 600;
    color: #c74343;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #c74343;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #c74343;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 12px;
}

.footer-section a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fff;
}

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

.footer-bottom p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin-top: 20px;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 24px;
}

.cookie-banner.show {
    display: block;
}

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

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

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

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

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

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

.cookie-reject {
    background-color: #e9ecef;
    color: #333;
}

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

.page-header {
    padding: 80px 20px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header p {
    font-size: 20px;
    color: #666;
}

.about-content {
    padding: 80px 20px;
}

.content-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-image {
    flex: 1;
    background-color: #f5f5f5;
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.approach-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #c74343;
}

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

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.team-member p {
    color: #666;
    font-size: 16px;
}

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

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

.values-list {
    max-width: 900px;
    margin: 0 auto;
}

.value-item {
    margin-bottom: 40px;
}

.value-item h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #c74343;
}

.value-item p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
}

.services-detailed {
    padding: 80px 20px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #f5f5f5;
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #333;
}

.service-detail-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    color: #666;
    margin-bottom: 8px;
    padding-left: 8px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #c74343;
    margin-bottom: 20px;
}

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

.process-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #c74343;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

.contact-content {
    padding: 80px 20px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 36px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #c74343;
}

.contact-detail p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
}

.contact-image {
    flex: 1;
    background-color: #f5f5f5;
}

.contact-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq-item p {
    color: #666;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 20px;
}

.contact-form-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.thanks-section {
    padding: 100px 20px;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #c74343;
    color: #fff;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.service-info {
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.service-info p {
    font-size: 18px;
    color: #333;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.next-steps ul {
    list-style-position: inside;
}

.next-steps ul li {
    font-size: 17px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.additional-resources {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.additional-resources h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.resource-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.resource-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
}

.resource-card a {
    color: #c74343;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-card a:hover {
    color: #a33636;
}

.legal-page {
    padding: 60px 20px 100px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.update-date {
    font-size: 16px;
    color: #999;
    margin-bottom: 40px;
}

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

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    color: #333;
}

.legal-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 20px 0 20px 24px;
    list-style-type: disc;
}

.legal-content ul li {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content a {
    color: #c74343;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.cookie-status-display {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 28px 0;
}

@media (max-width: 768px) {
    .hero-section,
    .content-split,
    .contact-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .hero-content h1,
    .page-header h1 {
        font-size: 36px;
    }

    .nav-links {
        gap: 20px;
    }

    .services-grid,
    .card-grid,
    .testimonial-cards,
    .approach-grid,
    .team-grid,
    .process-steps,
    .faq-grid,
    .resource-cards {
        flex-direction: column;
    }

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

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