* {
    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: #2d3748;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #2d3748;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 37px;
    z-index: 999;
}

.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: #2d3748;
}

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

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

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

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

.hero-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

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

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-button {
    background-color: #2d3748;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.value-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.value-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.value-card {
    flex: 1;
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.value-card p {
    color: #4a5568;
    font-size: 16px;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.services-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

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

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

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

.service-content p {
    color: #4a5568;
    margin-bottom: 16px;
    flex-grow: 1;
}

.service-details {
    margin-bottom: 16px;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.select-service-btn {
    background-color: #2d3748;
    color: #ffffff;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.order-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.order-form-wrapper {
    flex: 1.5;
}

.order-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a202c;
}

.order-form-wrapper > p {
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #2d3748;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 8px;
}

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

.order-info {
    flex: 1;
}

.info-box {
    background-color: #f7fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.info-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2d3748;
}

.process-list {
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 12px;
    color: #4a5568;
}

.testimonials-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #2d3748;
}

.testimonial-author span {
    color: #718096;
    font-size: 14px;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-column p {
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

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

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
}

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

.disclaimer {
    font-size: 12px;
    color: #a0aec0;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    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: 32px;
}

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

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

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

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #ffffff;
    color: #2d3748;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: #cbd5e0;
}

.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.story-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
}

.story-text p {
    color: #4a5568;
    margin-bottom: 16px;
    font-size: 16px;
}

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

.values-section-alt h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

.values-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3748;
}

.value-item p {
    color: #4a5568;
    font-size: 16px;
}

.team-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

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

.team-card {
    flex: 1;
    background-color: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

.team-image {
    width: 100%;
    height: 200px;
    background-color: #e2e8f0;
    overflow: hidden;
}

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

.team-card h3 {
    padding: 20px 20px 8px;
    font-size: 22px;
    color: #2d3748;
}

.team-card p {
    padding: 0 20px 20px;
    color: #4a5568;
    font-size: 15px;
}

.mission-section {
    padding: 80px 20px;
    background-color: #2d3748;
}

.mission-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.mission-box h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.mission-box p {
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 16px;
}

.detailed-services {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    background-color: #f7fafc;
    border-radius: 12px;
    margin-bottom: 48px;
    overflow: hidden;
}

.service-detail-header {
    display: flex;
    gap: 40px;
    padding: 40px;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    background-color: #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-info h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a202c;
}

.price-tag {
    display: inline-block;
    background-color: #2d3748;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.service-detail-info p {
    color: #4a5568;
    margin-bottom: 24px;
    font-size: 16px;
}

.service-detail-content {
    padding: 0 40px 40px;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: #4a5568;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2d3748;
    font-weight: bold;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 20px;
}

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

.faq-item p {
    color: #4a5568;
    font-size: 16px;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a202c;
}

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

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2d3748;
}

.contact-detail p {
    color: #4a5568;
    font-size: 16px;
    line-height: 1.8;
}

.contact-detail .note {
    font-size: 14px;
    color: #718096;
    margin-top: 8px;
}

.contact-detail a {
    color: #2d3748;
    text-decoration: underline;
}

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

.map-box {
    background-color: #f7fafc;
    padding: 32px;
    border-radius: 12px;
    height: 100%;
}

.map-box h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.map-box p {
    color: #4a5568;
    margin-bottom: 24px;
}

.location-info p {
    margin-bottom: 12px;
}

.visit-section {
    padding: 80px 20px;
    background-color: #2d3748;
}

.visit-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.visit-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.visit-box p {
    font-size: 16px;
    line-height: 1.8;
    color: #cbd5e0;
    margin-bottom: 16px;
}

.info-section {
    padding: 80px 20px;
    background-color: #f7fafc;
}

.info-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
}

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

.info-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.info-card p {
    color: #4a5568;
    font-size: 15px;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f7fafc;
}

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

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

.thanks-box h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
}

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

.order-summary {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.order-details h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

.order-details p {
    color: #4a5568;
    margin-bottom: 8px;
}

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

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.steps-list {
    list-style: decimal;
    padding-left: 24px;
    text-align: left;
}

.steps-list li {
    margin-bottom: 12px;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 40px;
}

.btn-primary {
    background-color: #2d3748;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2d3748;
    padding: 14px 28px;
    border: 2px solid #2d3748;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.thanks-contact {
    color: #4a5568;
    font-size: 16px;
}

.thanks-contact strong {
    color: #2d3748;
}

.legal-page {
    padding: 60px 20px;
    background-color: #ffffff;
}

.legal-intro {
    text-align: center;
    color: #718096;
    font-size: 14px;
    margin-bottom: 40px;
}

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

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 12px;
    color: #2d3748;
}

.legal-section p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-section ul li {
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.8;
}

.legal-section a {
    color: #2d3748;
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

.cookie-table th {
    background-color: #f7fafc;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table td {
    color: #4a5568;
}

@media (max-width: 768px) {
    .hero-content,
    .story-content,
    .contact-content,
    .order-content {
        flex-direction: column;
    }

    .value-cards,
    .testimonials-grid,
    .team-grid,
    .footer-content {
        flex-direction: column;
    }

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

    .service-card {
        min-width: 100%;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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

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