/* Service Detail Pages */
.service-detail-hero {
    background: var(--gradient-1);
    color: #fff;
    padding: 160px 0 80px;
    text-align: center;
}

.service-detail-header {
    max-width: 800px;
    margin: 0 auto;
}

.service-category {
    display: inline-block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.service-detail-header h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    line-height: 1.4;
    font-weight: 600;
}

.service-catchcopy {
    font-size: 1.4rem;
    line-height: 1.8;
    opacity: 0.9;
}

.service-detail-content {
    padding: var(--spacing-unit) 0;
}

/* Problem Solution Section */
.problem-solution {
    max-width: 800px;
    margin: 0 auto 6rem;
}

.problem, .solution {
    margin-bottom: 4rem;
}

.problem h2, .solution h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: left;
    color: var(--secondary-color);
}

.problem h2::after, .solution h2::after {
    margin: 1rem 0;
}

.problem p, .solution p {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

/* Features Section */
.service-features {
    padding: var(--spacing-unit) 0;
    margin: 6rem 0;
}

.service-features h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    position: relative;
}

.feature-number {
    position: absolute;
    top: -1rem;
    left: 2rem;
    background: var(--accent-color);
    color: #fff;
    font-size: 0.9rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.8;
}

/* Summary Section */
.service-summary {
    text-align: center;
    max-width: 800px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.summary-text {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Extra Service Elements */
.service-extra {
    margin: 6rem 0;
}

.service-extra h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.notice-box {
    background: rgba(0, 80, 160, 0.05);
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.notice-text {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.8;
    text-align: left;
}

/* Consulting Page Specific */
.concern-list {
    list-style: none;
    margin: 2rem 0;
}

.concern-list li {
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--secondary-color);
    font-size: 1.1rem;
    line-height: 1.8;
}

.concern-list li::before {
    content: '?';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

.support-list {
    list-style: none;
    margin: 1.5rem 0;
}

.support-list li {
    margin: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.support-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

.service-extra .feature-card {
    padding: 2.5rem;
}

.service-extra .feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-detail-hero {
        padding: 120px 0 60px;
    }

    .service-detail-header h1 {
        font-size: 2.2rem;
    }

    .service-catchcopy {
        font-size: 1.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .summary-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .service-detail-header h1 {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 2rem;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }
}
