/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
}

/* Background Section */
.background {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('https://images.unsplash.com/photo-1613667650324-ed09383eb8e5?fm=jpg&q=60&w=3000&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZW1wdHklMjBob3VzZXxlbnwwfHwwfHx8MA%3D%3D');
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}

.background .content {
    padding: 20px;
    border-radius: 10px;
    max-width: 800px;
}

.background h1 {
    font-size: 4em;
    margin: 0 0 10px;
    text-align: center;
}

.background p {
    font-size: 1.2em;
    margin: 0;
}

/* About Section */
.about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #f9f9f9;
}

.text-container, .image-container {
    flex: 1;
    padding: 20px;
    min-width: 300px;
    box-sizing: border-box;
}

.text-container h2 {
    margin-bottom: 20px;
    font-size: 24px;
}

.text-container p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: large;
}

.image-container img {
    width: 100%;
    border-radius: 8px;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .background h1 {
        font-size: 2.5em;
    }

    .background p {
        font-size: 1em;
    }

    .text-container h2 {
        font-size: 20px;
    }

    .text-container p {
        font-size: medium;
    }
}

@media (max-width: 480px) {
    .background h1 {
        font-size: 2em;
    }

    .background p {
        font-size: 0.9em;
    }

    .text-container h2 {
        font-size: 18px;
    }

    .text-container p {
        font-size: small;
    }
}
