
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #fff;
}

.header {
    text-align: center;
    padding: 30px 20px;
    background-color: #f9f9f9;
}

.header .logo img {
    width: 60px;
    margin-bottom: 10px;
}

.header-text h1 {
    font-size: 28px;
    color: #0d2c54;
}

.header-text h1 span {
    font-weight: bold;
}

.header-text p {
    font-size: 16px;
    color: #555;
}

.btn-primary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #2bbbad;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #26a69a;
}

.about {
    padding: 40px 20px;
    text-align: center;
}

.about h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-content p {
    max-width: 600px;
    text-align: justify;
    margin: 0 auto;
}

.map-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
}

iframe {
    display: block;
}

.services {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.services h2 {
    font-size: 24px;
    margin-bottom: 30px;
}

.service-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #fff;
    padding: 20px;
    width: 250px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.card i {
    font-size: 40px;
    color: #0d2c54;
    margin-bottom: 10px;
}

.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact {
    padding: 40px 20px;
    text-align: center;
}

.contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin: 10px 0;
}

.btn-secondary {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #0d2c54;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.btn-secondary:hover {
    background-color: #09304a;
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    .service-cards {
        flex-direction: column;
        align-items: center;
    }
}
