body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background: #111;
    color: #fff;
    padding: 20px;
}

header h1 {
    margin: 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: #f4f4f4;
    padding: 60px 20px;
    text-align: center;
}

section {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
}

.top-image {
    width: 100%;
    background: #000;
    text-align: center;
}

.top-image img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.top-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
}

.top-image {
    position: relative;
}

.contact-overlay {
    position: absolute;
    bottom: 12%;
    right: 6%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-btn img {
    width: 100%;
    max-width: 18vw;
    height: auto;
}

@media (max-width: 768px) {
    .contact-overlay {
        bottom: 10%;
        right: 5%;
    }

    .contact-btn img {
        width: 56px;
    }
}

.contact-overlay.horizontal {
    position: absolute;
    bottom: 14%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 32px;
    align-items: center;
}

.contact-btn img {
    width: 100%;
    max-width: 22vw;
    height: auto;
}

@media (max-width: 768px) {
    .contact-overlay.horizontal {
        bottom: 12%;
        gap: 20px;
    }

    .contact-btn img {
        width: 72px;
    }
}

/* FORCE horizontal alignment for contact buttons */
.contact-overlay {
    flex-direction: row !important;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .contact-btn img {
        width: 100%;
    }
}
