body {
    font-family: "Caladea", Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
}

header {
    background: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

header img{
    width: 100%;
    height: auto;
}

nav {
    display: flex;
    justify-content: center;
    background: #444;
}

nav a {
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    text-align: center;
}

nav a:hover {
    background: #555;
}

.main-content {
    padding: 20px;
}

.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
}

.footer a{
    color:#fff;
}

@media (max-width: 768px) {
    header {
        padding: 10px 0;   
    }

    nav a {
        padding: 10px;
        flex: 100%;
    }

    .main-content {
        padding: 10px;
    }
}

.whatsapp-button {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 16px;
}
.whatsapp-button:hover {
    background-color: #1EBE54;
}


.call-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: white;
    background-color:#0092cc; /* Change this to your desired color */
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #0b5394; /* Change this to your desired hover color */
}
