/* File: styles/service-grid.css */

.service-grid-section {
    padding: 4rem 2rem;
    background-color: #FDF0E9; 
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    padding: 2rem;
    border: 1px solid #e0e0e0; /* Light border for separation */
    border-radius: 8px;
    background-color: #fbe8df; /* White background for contrast */
    text-align: center;
}

.icon-container {
    margin-bottom: 1rem;
}

.service-icon {
    width: 50px;
    height: 50px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #391400; /* Text color */
}

.service-description {
    font-size: 1rem;
    color: #39140096; /* Gray text color */
    line-height: 1.6;
}
