/* styles/pages/services.css */

.services__intro {
    text-align: center;
    padding: 32px 0 64px 0;
}

.services__intro h2 {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.services__intro p {
    font-family: var(--font-tertiary);
    font-size: 1.2rem;
    color: var(--background-color);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.services__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.service__category-card {
    background-color: var(--background-color);
    border-radius: 8px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    padding: 2.5rem 2rem;
    flex-basis: 45%;
    min-width: 400px;
    flex-grow: 1;
    border-top: 5px solid var(--tertiary-color);
}

.service__category-card h3 {
    font-family: var(--font-secondary);
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0e0e0;
}

.service__list {
    list-style: none;
    padding: 0;
}

.service__list li {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.service__list li:last-child {
    margin-bottom: 0;
}

.service__list i {
    font-size: 1.5rem;
    color: var(--tertiary-color);
    margin-top: 5px;
    width: 30px;
    text-align: center;
}

.service__list strong {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.2rem;
}

.service__list p {
    font-family: var(--font-tertiary);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-color);
    margin: 0;
}

.services__cta {
    background: linear-gradient(135deg, var(--primary-color), #4a5c4c);
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 8px;
    margin-top: 64px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.services__cta h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--background-color);
    margin-bottom: 1rem;
}

.services__cta p {
    font-family: var(--font-tertiary);
    font-size: 1.1rem;
    color: var(--background-color);
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-button {
    background-color: var(--tertiary-color);
    color: var(--text-color);
    text-decoration: none;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 1rem 3rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    color: var(--background-color);
    border-color: var(--tertiary-color);
    transform: translateY(-3px);
}