body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: #fffbeb; /* Comfortable yellow background */
    color: #1c1e21;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1), 0 8px 16px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 20px;
}

.logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

h1 {
    font-size: 1.8rem;
    color: #333;
}

h2 {
    font-size: 1.4rem;
    color: #555;
    margin-top: 2rem;
}

.title {
    color: #e5a00d; /* Same gold color as the footer */
    font-size: 1.6rem; /* Larger font size */
}

.app-section {
    margin-bottom: 2rem;
}

.download-links a {
    display: inline-block;
    margin: 0.5rem;
    transition: transform 0.2s;
    vertical-align: middle;
}

.download-links a:hover {
    transform: scale(1.05);
}

.download-links img {
    height: 60px;
    width: auto;
}

.footer-text {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e5a00d; 
    margin-top: 2rem;
}

.phone-number {
    font-size: 1.2rem;
    color: #333;
    margin-top: 2rem;
    font-weight: bold;
}

/* Floating WhatsApp button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    left: 20px; /* Positioned to the bottom-left */
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.25);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background-color 0.2s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128C7E;
}

.whatsapp-icon {
    width: 35px;
    height: 35px;
    fill: #fff;
}

/* Responsive design for smaller screens */
@media (max-width: 480px) {
    .download-links {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .download-links a {
        margin: 0.25rem;
    }

    .download-links img {
        height: 50px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        left: 15px;
    }

    .whatsapp-icon {
        width: 30px;
        height: 30px;
    }
}
