/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.welcome-message {
    padding: 20px;
}

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.text-content {
    max-width: 50%;
}

.text-content h1 {
    font-size: 2.5em;
    margin: 0;
}

.text-content h3 {
    font-size: 1.5em;
    margin-top: 0.5em;
}

.text-content p {
    margin: 1em 0;
}

.buttons {
    margin-top: 1.5em;
}

.btn-primary, .btn-secondary {
    padding: 10px 20px;
    margin-right: 10px;
    text-decoration: none;
    color: #fff;
}

.btn-primary {
    background-color: #007BFF;
}

.btn-secondary {
    background-color: #6c757d;
}

.image-content {
    position: relative;
}

.background-image {
    width: 100%;
    height: auto;
}

.foreground-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: auto;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .text-content {
        max-width: 100%;
    }

    .image-content {
        margin-top: 20px;
    }

    .foreground-image {
        width: 100%;
        position: static;
    }
    .image-content{
        display:none;
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        font-size: 2em;
    }

    .text-content h3 {
        font-size: 1.2em;
    }

    .text-content p {
        font-size: 1em;
    }

    .btn-primary, .btn-secondary {
        padding: 8px 16px;
        font-size: 0.9em;
    }

    .foreground-image {
        width: 100%;
        height: auto;
    }
    
    .image-content{
        display:none;
    }
}
