:root {
    --primary: #0056b3;
    --secondary: #f8f9fa;
    --dark: #212529;
    --success: #28a745;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    color: var(--dark);
    background-color: #fff;
    line-height: 1.6;
}
header {
    background-color: var(--primary);
    color: white;
    padding: 40px 20px;
    text-align: center;
}
header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.service-card {
    background: var(--secondary);
    border-left: 5px solid var(--primary);
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.service-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}
.schedule-section {
    text-align: center;
    padding: 15px;
    background: #f1f3f5;
    border-radius: 8px;
    margin: 30px 0;
    border: 1px solid #dee2e6;
    font-size: 1.15rem;
}
.gallery {
    margin: 40px 0;
}
.gallery h2, .form-section h2 {
    text-align: center;
    margin-bottom: 30px;
}
.grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.grid-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.form-section {
    background: var(--secondary);
    padding: 30px;
    max-width: 600px;
    margin: 40px auto;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.form-group {
    margin-bottom: 15px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 1rem;
}
.submit-btn {
    width: 100%;
    background: var(--success);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
}
.info-section {
    background: var(--secondary);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
}
.badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 5px;
    font-weight: bold;
}
footer {
    background: var(--dark);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 60px;
    font-size: 0.9rem;
}
