/* styles.css */
body {
    font-family: Arial, sans-serif;
}

.services {
    padding: 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 20px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.grid-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-item img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-bottom: 20px;
}

.down-content h4 {
    margin-bottom: 10px;
    font-size: 1.2em;
}

.down-content p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
}

.filled-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    background-color: #007BFF;
    border-radius: 5px;
    text-decoration: none;
}

.filled-button:hover {
    background-color: #0056b3;
}
