:root {
    --primary: #1a237e;
    --accent: #00bcd4;
    --bg: #f5f7fa;
    --text: #222;
    --white: #fff;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
    font-family: 'Inter', Arial, sans-serif;
    background: url('/img/1.jpg') no-repeat center center fixed;
    background-size: cover;
    color: var(--text);
    min-height: 100vh;
}
header {
    background: var(--primary);
    color: var(--white);
    padding: 32px 0 24px 0;
    text-align: center;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
}
header h1 {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
nav {
    margin-top: 16px;
}
nav a {
    color: var(--white);
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.2s;
}
nav a:hover {
    color: var(--accent);
}
.container {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    padding: 0 24px;
}
.hero {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(26,35,126,0.07);
    padding: 48px 32px;
    text-align: center;
    margin-bottom: 40px;
}
.hero h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 18px;
}
.hero p {
    font-size: 1.15rem;
    color: #444;
    margin-bottom: 24px;
}
.address {
    margin: 32px 0 0 0;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
}
.section {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(26,35,126,0.04);
    padding: 32px 24px;
    margin-bottom: 32px;
}
.section h3 {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 16px;
}
.section ul {
    list-style: disc inside;
    color: #333;
    font-size: 1.05rem;
}
footer {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 18px 0;
    margin-top: 48px;
    font-size: 1rem;
    letter-spacing: 0.5px;
}
.map-container {
    width: 100%;
    max-width: 700px;
    margin: 32px auto 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(26,35,126,0.04);
}
.services-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
    margin-top: 28px;
    width: 100%;
    box-sizing: border-box;
}
.services-gallery img {
    width: 100%;
    height: 130px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(26,35,126,0.08);
    background: #eee;
    transition: transform 0.2s, box-shadow 0.2s;
    display: block;
}
.services-gallery img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px rgba(26,35,126,0.18);
}
.section.services {
    overflow: hidden;
}
@media (max-width: 700px) {
    .container, .hero, .section { padding: 16px; }
    .hero { padding: 32px 8px; }
}