body {
    background-image: url('background.jpg'); /* Update with your background image path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white; /* Adjust based on your background */
    font-family: Arial, sans-serif; /* Add font styles if needed */
    margin: 0;
    padding: 0;
}

header {
    background-color: rgba(21, 96, 189, 0.8); /* Dark teal with transparency */
    color: white;
    padding: 10px 20px;
    text-align: center; /* Center content */
}

.header {
    display: flex;                /* Use flexbox to align items */
    flex-direction: column;      /* Stack logo and title vertically */
    align-items: center;         /* Center items */
}

.logo {
    width: 100px;                 /* Set a width for the logo */
    height: auto;                /* Maintain aspect ratio */
    margin-bottom: 10px;         /* Space below the logo */
}

.title {
    font-size: 24px;             /* Adjust the font size */
    margin: 0;                   /* Remove default margin */
}

section {
    padding: 20px;
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: rgba(21, 96, 189, 0.8);
    color: white;
}

.contact-buttons {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.call-button, .whatsapp-button {
    display: flex;
    align-items: center;
}

.call-button {
    width: 40%;
    background-color: rgba(21, 96, 189, 0.8); /* Customize as needed */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.whatsapp-button {
    width: 50%;
    background-color: green; /* Customize as needed */
    color: white;
    padding: 10px;
    text-align: center;
    border-radius: 5px;
}

.call-button a, .whatsapp-button a {
    text-decoration: none;
    color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-button:hover, .whatsapp-button:hover {
    opacity: 0.9; /* Change on hover */
}

@media (max-width: 768px) {
    .contact-buttons {
        flex-direction: column; /* Stack buttons on smaller screens */
    }

    .call-button, .whatsapp-button {
        width: 100%; /* Full width for smaller screens */
        margin-bottom: 10px; /* Space between buttons */
    }
}
@media (max-width: 768px) {
    .gallery-image {
        width: 100%; /* Imaginile ocupă întreaga lățime pe mobil */
        height: auto; /* Păstrează raportul de aspect */
    }

    .contact-buttons {
        flex-direction: row; /* Aranjează butoanele în linie pe ecrane mai mari */
    }
}