﻿/*contactUs*/
.contact-link {
    display: inline-flex;
    align-items: center;
    margin: 10px 15px;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 13px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.phone {
    background-color: #007bff;
}

    .phone:hover {
        background-color: #0056b3;
    }

.instagram {
    background: #e4405f;
}

    .instagram:hover {
        background: #b02c46;
    }

.telegram {
    background: #0088cc;
}

    .telegram:hover {
        background: #006699;
    }

.whatsapp {
    background: #25D366;
}

    .whatsapp:hover {
        background: #1ebe57;
    }

.icon {
    width: 24px;
    height: 24px;
    margin-left: 12px;
    fill: white;
    flex-shrink: 0;
}

.description {
    max-width: 800px;
    margin: 40px auto;
    background-color: white;
    border: 1px solid #39FF14;
    border-radius: 8px;
    padding: 20px;
    color: #ccc;
    font-size: 16px;
    text-align: center;
}

    .description b {
        color: black;
    }

@media (max-width: 600px) {
    
    .description {
        font-size: 14px;
    }
}

/*link site bin*/

.link-button {
    background-color: #39FF14;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-family: Tahoma, sans-serif;
}

    .link-button:hover {
        background-color: darkgoldenrod;
    }