/* General Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Arial, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    
}

.services-section {
    max-width: 1100px;
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #222;
}

.services-header p {
    color: #777;
    font-size: 1.1rem;
}

/* Grid Layout */
.services-grid {
    display: grid;
    /* This creates 2 columns by default, or 1 on small screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: #007bff; /* Primary Accent Color */
}

.service-card p {
    font-size: 0.95rem;
    color: #555;
}

/* Tablet/Mobile Adjustments */
@media (max-width: 768px) {
    .services-header h1 {
        font-size: 2rem;
    }
}