/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Hero Section */
.hero-section {
    background-color: #e2e2e2;
    padding: 40px 20px;
    text-align: center;
}

.hero-section h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    padding: 60px 20px;
    background-color: #fff;
}

.services-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

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

.service-card {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 5px;
    transition: transform 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
    aspect-ratio: 16/9;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #555;
}
