* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    color: #101828; 
    background-color: #f4faff; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

/* Header */
.header {
    width: 100%;
    padding: 20px 20px;
}

.logo {
    height: 30px; 
    display: block;
    margin: 0;
}

/* Main Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px 100px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.text-content {
    max-width: 500px;
    text-align: left; 
}

.tagline {
    display: inline-block;
    background-color: #6be1d8; 
    color: #101828; 
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 15px;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    color: #101828; 
}

p {
    font-size: 1.2rem;
    color: #101828; 
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button img {
    width: 150px; 
    display: block;
    margin-left: 0; 
}

/* Phone Image */
.phone-image img {
    width: 360px; 
    max-width: 360px; 
    margin-left: 30px;
}

/* Support Section */
.support-section {
    margin-top: 20px; 
    margin-bottom: 40px; 
    color: gray;
    font-size: 0.9rem;
    text-align: center; 
    width: 100%;
}

.support-section p {
    margin-bottom: 5px; 
}

.support-section a {
    color: #1a73e8;
    text-decoration: none;
    font-size: 0.9rem; 
}

/* Media Query for mobile responsiveness */
@media (max-width: 900px) {
    .hero {
        flex-direction: column; 
        align-items: flex-start; 
        padding: 20px;
    }

    .text-content {
        max-width: 100%;
        text-align: left; 
    }

    .phone-image {
        display: flex;
        justify-content: center; 
        width: 100%; 
        margin-top: 20px; 
    }

    .phone-image img {
        margin-left: 0; 
        width: 360px;
    }

    h1 {
        font-size: 2.5rem; 
    }

    p {
        font-size: 1rem; 
        margin-bottom: 15px;
    }

    .cta-button img {
        width: 140px; 
        margin-left: 0; 
    }

    .support-section {
        font-size: 0.8rem; 
        margin-top: 20px; 
        margin-bottom: 40px; 
        text-align: center; 
    }
}