body {
    background-image: url(walalabackground.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

.header-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-info {
    font-size: 13px; /* Adjust the font size as needed */
    text-align: center;
}

.header-image {
    max-width: 200px; /* Ensure the image fills the width of its container */
    height: auto; /* Maintain aspect ratio */
}

.vertical-line {
    border-left: 1px solid black; /* Vertical line style */
    height: 100vh; /* Adjust height as needed */
    margin: 5px; /* Adjust spacing from adjacent sections */
}

#home-icon {
    position: absolute;
    top: 20px; /* Adjust the vertical position as needed */
    left: 20px; /* Adjust the horizontal position as needed */
    width: 200px; /* Adjust the width as needed */
    height: auto;
    z-index: 1000; /* Ensure it's on top of other elements */
    cursor: pointer; /* Show the hand cursor on hover */
}

body {
    background-image: url(walalabackground.png);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    margin: 0; /* Remove default body margin */
    overflow-x: hidden;
}

.page-title {
    text-align: center;
    margin-top: 50px; /* Adjust top margin as needed */
}

.subtitle {
    text-align: center;
    margin-bottom: 20px; /* Adjusted bottom margin */
    padding: 10px; /* Added padding for better readability */
    background-color: rgba(255, 255, 255, 0.7); /* Semi-transparent background */
    border: 1px solid rgba(0, 0, 0, 0.3); /* Thin black border */
}

.header-container {
    display: flex;
    justify-content: center;
}

.subtitle-container {
    text-align: center;
    margin-bottom: 20px; /* Adjust bottom margin as needed */
}

.subtitle {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.3); /* Almost transparent white */
    padding: 5px 10px; /* Adjust padding as needed */
    border: 1px solid rgba(0, 0, 0, 0.3); /* Almost transparent black border */
}

@media screen and (max-width: 414px) {
    .header-info h2 {
        font-size: 15px; /* Adjusted font size for smaller screens */
        max-width: 90%; /* Ensured text does not overflow on narrower screens */
        margin: 0 auto; /* Centered text */
        flex: 1;
    }

    .vertical-line {
        margin: 2px;
    }

    #home-icon {
        max-width: 90px; /* Adjusted size of home icon for smaller screens */
    }
}

@media screen and (min-width: 415px) {
    /* Adjust styles for larger screens like iPhone 14 */
    .header-section {
        width: 100%;
        max-width: 800px; /* Example adjustment for larger screens */
        flex: 1;
    }
    .vertical-line {
        margin: 2px;
    }
    #home-icon {
        max-width: 90px;
    }
}