html, body {
    color-scheme: only light !important;
}

.services-page {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.services-page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.page-description {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center; /* Centered content for better look with large icons */
}

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

.service-icon {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px; /* Centered with bottom margin */
}

.service-icon i {
    font-size: 6rem; /* Scaled up the icon size inside the bigger container */
    color: var(--primary-color);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    justify-content: center; /* Centered feature text */
    gap: 10px;
    padding: 8px 0;
    color: #475569;
    font-size: 0.95rem;
    border-bottom: 1px solid #f1f5f9;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features i {
    color: #22c55e;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e3a5f 100%);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: var(--primary-color);
    color: white !important;
    text-decoration: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.cta-button i {
    color: white !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    background-color: #e67e22;
    box-shadow: 0 8px 25px rgba(247, 146, 30, 0.4);
    color: white !important;
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .page-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 35px 25px;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.7rem;
    }

    .service-card {
        padding: 25px;
    }

    .cta-button {
        width: 100%;
        justify-content: center;
    }
}
