body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #000;
}

/* Header */
.header {
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.logo {
    max-height: 120px;
}

/* Promo Section */
.promo-section {
    padding: 50px 10px;
}

.promo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.promo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.promo-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Under Construction */
.construction {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.construction h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.construction p {
    color: #555;
    max-width: 600px;
    margin: auto;
}

/* About Us */
.about-us {
    text-align: center;
    padding: 60px 20px;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
}

.about-us h2 {
    font-weight: 600;
    margin-bottom: 15px;
}

.about-us p {
    color: #555;
    max-width: 80%;
    margin: 0px auto 12px;
    text-align: left;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #777;
}

/* WhatsApp Button */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #000;
    color: #fff;
    padding: 10px 14px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-button img {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    filter: invert(1);
}

.whatsapp-button:hover {
    background-color: #333;
    transform: translateY(-2px);
}

.whatsapp-text {
    font-weight: 500;
}