* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

#container {
    width: 70%; 
    height: auto; 
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgba(255, 255, 255, 0.85); 
    flex-direction: column;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#head {
    font-size: 48px;
    font-weight: 700;
    color: #6c5b7b;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

#about-us {
    background: linear-gradient(145deg, #ffe3ed, #ffcad4); 
    border-radius: 20px;
    width: 100%;
    padding: 30px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: inset 0 8px 15px rgba(0, 0, 0, 0.1);
}

.info {
    font-size: 22px; 
    line-height: 1.8;
    text-align: justify;
    color: #355c7d;
    padding: 20px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.5px;
}

.info::first-letter {
    font-size: 36px; 
    font-weight: bold;
    color: #ff6b81;
}
