* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 80px 8%;
    background-color: #f9f9f9;
}

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

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

.hero-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 600px;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-button.secondary {
    background-color: #ffffff;
    color: #0066cc;
    border: 2px solid #0066cc;
}

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

.approach-section {
    display: flex;
    align-items: center;
}

.approach-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 500px;
    overflow: hidden;
}

.approach-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.approach-text {
    flex: 1;
    padding: 80px 8%;
}

.approach-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.services-preview {
    padding: 100px 5%;
    background-color: #fafafa;
}

.services-preview h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 22px);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    font-weight: 700;
}

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
    margin: 16px 24px;
}

.service-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 24px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.process-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.process-text {
    flex: 1;
    padding: 60px 8%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.process-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.process-step {
    margin-bottom: 32px;
}

.process-step h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #0099ff;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #cccccc;
}

.process-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 500px;
    overflow: hidden;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form-section {
    padding: 100px 5%;
    background-color: #ffffff;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 42px;
    margin-bottom: 48px;
    font-weight: 700;
}

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

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="email"]:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
    margin-bottom: 16px;
}

.form-message {
    margin-bottom: 16px;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    display: none;
}

.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    display: block;
}

.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    display: block;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
    font-size: 15px;
}

.footer-section a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
    font-size: 15px;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 24px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #999;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
}

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

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

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

.cookie-content a {
    color: #0066cc;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #f5f5f5;
    color: #444;
}

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

.page-header {
    padding: 100px 5% 60px;
    text-align: center;
    background-color: #f9f9f9;
}

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

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

.services-detailed {
    padding: 60px 5%;
}

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

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

.service-detail-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-includes {
    margin: 32px 0;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.service-includes h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 24px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
}

.about-split {
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.about-content {
    flex: 1;
    padding-right: 60px;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.about-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 5%;
    background-color: #fafafa;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.approach-detail {
    position: relative;
    min-height: 600px;
    margin: 60px 0;
}

.approach-visual-large {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e8e8e8;
}

.approach-visual-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.approach-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 5%;
    color: #ffffff;
}

.approach-text-overlay h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-text-overlay p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.team-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.team-intro {
    text-align: center;
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.role-item {
    flex: 1;
    min-width: 280px;
    max-width: 380px;
    padding: 32px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.role-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #0066cc;
}

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

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

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #cccccc;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-section {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0066cc;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
    min-height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-approach {
    padding: 60px 5%;
    background-color: #f9f9f9;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 5%;
    text-align: center;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

.thanks-detail {
    background-color: #f0f7ff;
    padding: 20px;
    border-radius: 8px;
    margin: 32px 0;
    font-size: 17px;
}

.thanks-detail p {
    margin: 0;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

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

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

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

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

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

.legal-page a {
    color: #0066cc;
    text-decoration: underline;
}

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

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

@media (max-width: 1024px) {
    .hero-split,
    .approach-section,
    .process-split,
    .about-split,
    .contact-info-section {
        flex-direction: column;
    }

    .service-card {
        width: calc(50% - 16px);
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 16px;
    }

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

    .service-card {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}