/* ========== Base Reset ========== */
* {
    box-sizing: border-box;
}

body {
    background: #ed3137;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ========== Main Container ========== */
.container {
    flex: 1;
    max-width: 1140px;
    margin: 2rem auto;
    padding: 0 15px;
}

/* ========== Logo Section ========== */
.logo-section {
    margin-bottom: 2rem;
}

.logo {
    width: 60%;
    max-width: 300px;
    border-radius: 20px;
    filter: drop-shadow(2px 3px 5px #000000);
}

/* ========== Image Row ========== */
.img-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    min-height: 250px;
}

.app-image {
    width: 22%;
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 2px 3px 5px #000000;
}

/* ========== Info Section ========== */
.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-number-text {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.contact-number {
    text-decoration: none;
    color: #25D366;
    font-size: 1.2rem;
    display: inline-block;
    margin-top: 0.5rem;
}

.contact-number i {
    margin-right: 5px;
}

/* ========== Footer ========== */
footer {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 10px 20px;
    color: #fff;
    font-size: 0.8rem;
    margin-top: auto;
    width: 100%;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    float: right;
}

#ctext {
    display: block;
    margin-top: 5px;
    font-size: 1rem;
    text-align: center;
}

/* ========== Responsive (Mobile) ========== */
@media (max-width: 768px) {
    .logo {
        width: 80%;
    }

    .img-row {
        flex-direction: column;
        align-items: center;
    }

    .app-image {
        width: 80%;
        max-width: 100%;
    }

    .contact-number {
        font-size: 1rem;
    }

    footer a {
        float: none;
        display: block;
        text-align: center;
        margin-bottom: 5px;
    }
}
