body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f4f7fb;
    color: #222;
}

header {
    background-color: #0b3d73;
    padding: 20px 40px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img {
    width: 120px;
    height: auto;
    display: block;
}
.menu {
    display: flex;
    gap: 25px;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
}

.menu a:hover {
    text-decoration: underline;
}

main {
    padding: 40px;
}

h1 {
    color: #0b3d73;
}

h2 {
    color: #0066cc;
}

.service-box {
    background-color: white;
    padding: 25px;
    border-radius: 12px;
    max-width: 500px;
}
.button {
    background-color: #ff8c00;
    color: white;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
}

.button:hover {
    background-color: #e67e00;
}
.services {
    padding: 40px 0;
}

.services h2 {
    color: #0b4a82;
    margin-bottom: 25px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
    color: #0b4a82;
    margin-top: 0;
}

.service-card p {
    line-height: 1.6;
}
.services {
    margin-top: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h4 {
    color: #0d477d;
    font-size: 20px;
    margin-top: 0;
}

.service-card p {
    color: #333;
    line-height: 1.5;
}
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
.hero {
    padding: 60px 40px;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 52px;
    color: #0f4c8a;
    margin-bottom: 20px;
}

.hero p {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 30px;
}
footer {
    background: #0f4c8a;
    color: white;
    padding: 50px 20px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-content h3 {
    margin-bottom: 15px;
    font-size: 30px;
}

.footer-content p {
    margin: 10px 0;
    line-height: 1.6;
}

.copyright {
    margin-top: 30px;
    opacity: 0.8;
}
.button {
    background: #ff9800;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}

.button:hover {
    background: #e68900;
}
.hero-button {
    background: #ff9800;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
}
.container {
    width: 1200px;
    max-width: 90%;
    margin: 0 auto;
}
.contacts {
    padding: 60px 40px;
}

.contacts h2 {
    color: #0b4a82;
    margin-bottom: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-card p {
    margin-bottom: 15px;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.whatsapp-button:hover {
    transform: scale(1.05);
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

footer hr {
    margin: 30px 0;
}

footer h3 {
    margin-bottom: 15px;
}

footer p {
    line-height: 1.8;
}
.request-form {
    margin-top: 50px;
}

.request-form input {
    display: block;
    width: 300px;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
}

#sendButton {
    background: #0b4a82;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
}