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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #666;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}

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

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

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

.hero-section {
    background-color: #f5f5f5;
    padding: 80px 24px;
    position: relative;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 48px;
}

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

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

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: #fff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.intro-section {
    background-color: #fff;
    padding: 80px 24px;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.intro-section p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.image-text-section {
    background-color: #f9f9f9;
    padding: 80px 24px;
}

.split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    align-items: center;
}

.image-side {
    flex: 1;
}

.image-side img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.text-side {
    flex: 1;
}

.text-side h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.text-side p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.services-section {
    background-color: #fff;
    padding: 80px 24px;
}

.services-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.service-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0;
    width: calc(33.333% - 22px);
    min-width: 280px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

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

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

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 20px 20px 12px 20px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    color: #555;
    margin: 0 20px 12px 20px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #f39c12;
    margin: 16px 20px;
}

.select-service-btn {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px 20px;
    padding: 14px;
    background-color: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section {
    background-color: #f5f5f5;
    padding: 80px 24px;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: #fff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1a1a1a;
}

.selected-service-display {
    background-color: #f0f8ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    border-left: 4px solid #f39c12;
}

.selected-service-display p {
    margin: 4px 0;
    font-size: 15px;
    color: #333;
}

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

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

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

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

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

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

.trust-section {
    background-color: #fff;
    padding: 80px 24px;
}

.trust-section h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #1a1a1a;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.testimonial p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial .author {
    display: block;
    font-size: 14px;
    color: #333;
    font-weight: 600;
    font-style: normal;
}

.disclaimer-section {
    background-color: #f5f5f5;
    padding: 48px 24px;
    border-top: 1px solid #e0e0e0;
}

.disclaimer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #f39c12;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -2px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    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: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 24px 64px 24px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.about-content {
    background-color: #fff;
    padding: 80px 24px;
}

.about-intro {
    text-align: center;
    margin-bottom: 64px;
}

.about-intro h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-intro p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.split-content {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 64px;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.content-text {
    flex: 1;
}

.content-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-section {
    margin-bottom: 64px;
}

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

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

.value-item {
    flex: 1;
    min-width: 240px;
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 8px;
}

.value-item h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f39c12;
}

.value-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.team-section {
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 18px;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.services-detail-section {
    background-color: #fff;
    padding: 80px 24px;
}

.service-detail {
    display: flex;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

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

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.service-info ul {
    list-style: none;
    margin-top: 24px;
}

.service-info ul li {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    padding-left: 24px;
    position: relative;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: 700;
}

.contact-section {
    background-color: #fff;
    padding: 80px 24px;
}

.contact-grid {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    margin-bottom: 64px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    color: #1a1a1a;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f39c12;
}

.info-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.directions-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.directions-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.thanks-section {
    background-color: #fff;
    padding: 120px 24px;
}

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

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

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirm {
    background-color: #f0f8ff;
    padding: 16px;
    border-radius: 6px;
    margin: 24px 0;
    border-left: 4px solid #f39c12;
}

.back-btn {
    display: inline-block;
    background-color: #1a1a1a;
    color: #fff;
    padding: 16px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    margin-top: 24px;
    transition: background-color 0.3s;
}

.back-btn:hover {
    background-color: #333;
}

.legal-page {
    background-color: #fff;
    padding: 80px 24px;
}

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

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #333;
}

.legal-page p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-page a {
    color: #f39c12;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-page a:hover {
    color: #e67e22;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .split-container,
    .split-content,
    .contact-grid,
    .service-detail {
        flex-direction: column;
    }

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

    .service-card {
        width: 100%;
    }

    .testimonials {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 32px;
    }

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