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

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

.main-nav {
    background-color: #ffffff;
    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: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.intro-asymmetric {
    display: flex;
    padding: 90px 60px;
    gap: 80px;
    align-items: center;
    background-color: #f8f9fa;
}

.intro-text {
    flex: 2;
}

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

.intro-text p {
    font-size: 18px;
    color: #555;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
}

.stat-label {
    font-size: 16px;
    color: #777;
}

.services-grid {
    padding: 90px 60px;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

.service-cards-split {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

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

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px 0;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
    display: block;
}

.select-service-btn {
    padding: 12px 28px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
}

.form-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.form-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

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

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

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

.btn-submit {
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 60px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 30px;
}

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

.footer-column {
    flex: 1;
}

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

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

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

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

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    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: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #555;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.about-hero-split {
    display: flex;
    padding: 80px 60px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 18px;
    color: #666;
}

.about-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.about-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-story {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

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

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

.story-highlight {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.story-highlight p {
    font-size: 22px;
    font-weight: 600;
}

.values-split {
    padding: 90px 60px;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.value-item {
    display: flex;
    gap: 50px;
    align-items: center;
}

.value-item.reverse {
    flex-direction: row-reverse;
}

.value-content {
    flex: 1;
}

.value-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.value-content p {
    font-size: 18px;
    color: #666;
}

.value-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.value-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-about {
    padding: 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

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

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

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

.services-header {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.services-header h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 60px 60px 90px;
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

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

.service-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-info p {
    font-size: 17px;
    color: #666;
    margin-bottom: 24px;
}

.service-detail-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 8px;
    color: #2c3e50;
}

.service-detail-info ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.service-detail-info ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.price-box {
    padding: 20px;
    background-color: #ecf8f3;
    border-left: 4px solid #27ae60;
    margin-bottom: 24px;
}

.price-label {
    font-size: 16px;
    color: #666;
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-cta {
    padding: 80px 60px;
    background-color: #3498db;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

.services-cta .cta-button {
    background-color: #ffffff;
    color: #3498db;
}

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

.contact-header {
    padding: 80px 60px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-header h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

.contact-layout {
    padding: 90px 60px;
}

.contact-info-block {
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

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

.contact-visual {
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.thanks-section {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #666;
}

#selected-service-display {
    font-weight: 600;
    color: #3498db;
}

.thanks-actions {
    margin-top: 40px;
    display: flex;
    gap: 16px;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.thanks-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.thanks-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #34495e;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .form-section-split,
    .about-hero-split,
    .service-card,
    .value-item,
    .service-detail-split,
    .thanks-section {
        flex-direction: column;
    }

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

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

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }
}