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

.ad-notice {
    background-color: #f5f5f5;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #444;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

.intro-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
    color: #1a1a1a;
}

.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.services-overview {
    padding: 100px 60px;
    background-color: #fafafa;
}

.services-overview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

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

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

.price {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-center {
    text-align: center;
}

.method-split {
    display: flex;
    min-height: 550px;
}

.method-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.method-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 600;
}

.method-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.method-points {
    list-style: none;
    margin-top: 30px;
}

.method-points li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.method-points li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.method-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

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

.form-section {
    padding: 100px 60px;
    background-color: #f4f4f4;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
    font-size: 16px;
}

.contact-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 6px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #1a1a1a;
}

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

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #999;
    font-size: 13px;
}

.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: 20px;
    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;
    margin: 0;
    font-size: 14px;
    color: #444;
}

.cookie-content a {
    color: #1a1a1a;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #e0e0e0;
    color: #1a1a1a;
}

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

.page-header-split {
    display: flex;
    min-height: 400px;
}

.header-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.header-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.header-content p {
    font-size: 18px;
    color: #555;
}

.header-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

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

.detail-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 600;
}

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

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #444;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a1a1a;
    font-weight: 600;
}

.pricing-detail {
    margin-top: 40px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.cta-section-full {
    padding: 100px 60px;
    background-color: #1a1a1a;
    text-align: center;
    color: #ffffff;
}

.cta-section-full h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.cta-section-full p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #ccc;
}

.cta-section-full .cta-primary {
    background-color: #ffffff;
    color: #1a1a1a;
}

.cta-section-full .cta-primary:hover {
    background-color: #e8e8e8;
}

.about-hero-split {
    display: flex;
    min-height: 500px;
}

.about-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.about-hero-content h1 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 24px;
}

.about-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

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

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

.story-split {
    display: flex;
    min-height: 500px;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.story-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.story-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.team-section {
    padding: 100px 60px;
    background-color: #fafafa;
}

.team-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
}

.expertise-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 40px;
    border-radius: 6px;
}

.expertise-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.expertise-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.philosophy-split {
    display: flex;
    min-height: 500px;
}

.philosophy-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

.philosophy-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.philosophy-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-split {
    display: flex;
    min-height: 500px;
}

.values-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.values-content {
    flex: 1;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.values-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
}

.values-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.disclaimer-section {
    padding: 60px 60px;
    background-color: #f4f4f4;
}

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

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
    font-style: italic;
    text-align: center;
}

.contact-hero {
    padding: 100px 60px 60px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 18px;
    color: #555;
}

.contact-split {
    display: flex;
    min-height: 500px;
}

.contact-info {
    flex: 1;
    padding: 80px 60px;
    background-color: #ffffff;
}

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

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

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

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

.thanks-section {
    padding: 150px 60px;
    background-color: #f9f9f9;
    min-height: 60vh;
}

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

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 24px;
}

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

.thanks-container .cta-primary {
    margin-top: 30px;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-page ul {
    margin: 16px 0 16px 30px;
}

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

.legal-page em {
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .method-split,
    .service-detail-split,
    .about-hero-split,
    .story-split,
    .philosophy-split,
    .values-split,
    .contact-split,
    .page-header-split {
        flex-direction: column;
    }

    .reverse {
        flex-direction: column;
    }

    .services-grid,
    .expertise-grid {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

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

    .hero-text h1,
    .header-content h1,
    .about-hero-content h1,
    .thanks-container h1 {
        font-size: 32px;
    }

    .services-overview h2,
    .team-section h2,
    .cta-section-full h2,
    .legal-page h1 {
        font-size: 30px;
    }

    .intro-content h2,
    .method-content h2,
    .detail-content h2,
    .story-content h2,
    .philosophy-content h2,
    .values-content h2,
    .contact-info h2,
    .form-container h2 {
        font-size: 28px;
    }

    .hero-content,
    .intro-content,
    .method-content,
    .detail-content,
    .about-hero-content,
    .story-content,
    .philosophy-content,
    .values-content,
    .contact-info,
    .header-content {
        padding: 50px 30px;
    }

    .services-overview,
    .team-section,
    .form-section,
    .cta-section-full {
        padding: 60px 30px;
    }

    .contact-form {
        padding: 30px;
    }
}