/* Main Content */
main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
    background-color: #F8F8F8;
}

/* Hero Section */
.hero {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.hero-content {
    max-width: 800px;      
    margin: 0 auto;  
    padding: 20px;
    text-align: left; 
    line-height: 1.6;   

}

#unique-power {
    font-size: 2.5em;
    color: #A2195B;
    margin-bottom: 0;
}

#loving-community {
    font-size: 2.5em;
    color: #A2195B;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 0;
}

#attentive-community {
    font-size: 2.5em;
    color: #b87d00;
    margin-top: 0;
}

#we-have-created {
    font-size: 1.2em;
    color: #A2195B;
    margin-top: 0;
}

#we-are-a {
    font-size: 1.2em;
    color: black;
    font-weight: bold;
    margin-top: 0 auto;
}

#pobal-mhuire {
    font-size: 1.2em;
    color: #A2195B;
    font-weight: bold;
    margin-top: 0;
}

/* Optional responsive tweaks - hero */
@media (max-width: 768px) {
    .hero-content {
        padding: 15px;
        font-size: 0.95em;
    }
}

/* Image container */
.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    max-width: 400px;
}

.image-container img {
    width: 100%;
    height: auto;
    max-width: 300px;
    border-radius: 5px;
}

/* Text container */
.text-container {
    flex: 2;
    text-align: left;
    padding: 20px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .image-container {
        max-width: 100%;
    }

    .text-container {
        padding: 10px;
        text-align: center;
    }

    .text-container h1 {
        font-size: 24px;
    }

    .text-container p {
        font-size: 16px;
    }
}

/* CSS message.html page */
.under-development {
    max-width: 800px;
    margin: 100px auto;
    padding: 30px;
    text-align: center;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  }
  
.under-development h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
  }
  
.under-development p {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  #meaning {
    font-size: 1.2em;
    color: #A2195B;
    font-weight: bold;
    margin-top: 0;
  }