* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.header {
    background: #ffffff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    border-bottom: 1px solid #eee;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #1e88e5;
    font-weight: bold;
}

.hero {
    background: #eaf6fb;
    padding: 100px 0;
    text-align: center;
}

.section {
    padding: 80px 0;
}

.light {
    background: #f9f9f9;
}

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

.card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background: #1e88e5;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.form {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form input,
.form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.footer {
    text-align: center;
    padding: 20px;
    background: #1e88e5;
    color: #fff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

#prices {
    background: linear-gradient(to bottom, #f4f8fb, #ffffff);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
}

.prices-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

#prices h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #0a6ebd;
    position: relative;
}

#prices h2::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #0a6ebd;
    display: block;
    margin: 15px auto 0;
}

.price-category {
    background: white;
    padding: 30px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.price-category h3 {
    margin-bottom: 20px;
    color: #0a6ebd;
}

.price-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-category li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.price-category li:last-child {
    border-bottom: none;
}

.price-category strong {
    color: #111;
    font-weight: 600;
}

.price-note {
    margin-top: 40px;
    font-size: 14px;
    color: #666;
}

#services {
    padding: 80px 20px;
    background: #ffffff;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

#services h2 {
    font-size: 38px;
    margin-bottom: 60px;
    color: #0a6ebd;
}

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

.service-card {
    background: #f4f8fb;
    padding: 30px;
    border-radius: 16px;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    color: #0a6ebd;
}

.service-card p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

#contacts {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #f4f8fb);
    display: flex;
    justify-content: center;
}

.contact-container {
    max-width: 1100px;
    width: 100%;
    text-align: center;
}

#contacts h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #0a6ebd;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.contact-card h3 {
    margin-bottom: 15px;
    color: #0a6ebd;
}

.contact-card a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.contact-card a:hover {
    color: #0a6ebd;
}

.contact-card p {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: 0;
}