/* css/pages/services.css */

body.washi-theme .service-section {
    padding: 2.5rem 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid var(--washi-light-gray);
    border-radius: .5rem; /* Bootstrap's default is .25rem, making it slightly more rounded */
    transition: all 0.3s ease-in-out;
    background-color: var(--washi-base-light); /* Slightly lighter than main content for contrast */
}

body.washi-theme .service-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.1);
    border-left: 5px solid var(--washi-accent);
}

body.washi-theme .service-section .fa-4x {
    font-size: 3.5rem; /* Slightly smaller for better balance */
    margin-bottom: 1rem; /* Adjusted from original HTML inline style */
    color: var(--washi-primary-dark); /* Darker shade for icons */
}

body.washi-theme .service-section h2.h3 {
    color: var(--washi-primary-dark);
    font-weight: 500; /* Noto Sans JP Medium */
    margin-bottom: 1rem;
}

body.washi-theme .service-section p,
body.washi-theme .service-section ul li {
    color: var(--washi-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

body.washi-theme .service-section ul {
    padding-left: 0; /* Remove default padding */
}

body.washi-theme .service-section ul li i.fa-check-circle {
    color: var(--washi-accent-dark); /* Darker accent for checkmarks */
    margin-right: 0.75rem;
}

/* Alternating icon alignment for visual rhythm */
/* For sections where image/icon is on the right (due to flex-row-reverse) */
body.washi-theme .service-section .row.flex-row-reverse .col-md-3 {
    text-align: center; /* Ensure icon is centered */
}

/* CTA Section at the bottom */
body.washi-theme .cta-section {
    padding: 3rem 1.5rem;
    border-radius: .5rem;
    background-color: var(--washi-off-white);
    border-top: 3px solid var(--washi-accent);
}

body.washi-theme .cta-section h2.h3 {
    font-weight: 500;
}

body.washi-theme .cta-section .btn-washi-primary {
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

/* Header Styling */
body.washi-theme main .container > header.text-center h1.display-4 {
    font-family: 'Noto Serif JP', serif;
    font-weight: 700; /* Bold */
    margin-bottom: 0.75rem;
}

body.washi-theme main .container > header.text-center p.lead {
    font-size: 1.15rem;
    color: var(--washi-secondary-dark);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767.98px) { /* Bootstrap's md breakpoint */
    body.washi-theme .service-section .col-md-3 {
        text-align: center;
        margin-bottom: 1.5rem;
    }

    body.washi-theme .service-section .row.flex-row-reverse .col-md-3 {
        margin-bottom: 1.5rem; /* Ensure consistent spacing */
    }

    body.washi-theme .service-section {
        padding: 1.5rem;
    }

    body.washi-theme .service-section .fa-4x {
        font-size: 3rem;
    }
} 