.logo-img {
    width: 80px;
    height: auto;
    border-radius: 50%;
}

.hero-img {
    width: 100%;
    max-width: 350px;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid black;
}

.fea-pic {
    width: 230px;
    height: 230px;
    border-radius: 35px;
}

body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}

.header {
    display: flex;
    justify-content: space-between;
    padding: 25px;
    background: #bbe9db; 
    font-family:monospace ;
    font-weight:bolder;
    color: rgb(97, 88, 88);
    font-size: 1.0rem;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.hero  {
    display: flex;
    background: #bbe9db; 
    padding: 20px;
    justify-content: space-between;
    font-family: 'Poppins', sans-serif;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

p {
    font-family: 'Courier New', Courier, monospace;
}

button {
    background-color: bisque;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    border: 2px solid black;
    font-family: monospace;
    font-size: 0.9rem;
}

.feature {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: #aeccc6;
    padding: 20px;
}

.feature-up {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    font-weight: 700;
    font-size: larger;
}

.feature-down {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    flex: 1;
    text-align: center;
}

.fea-pic {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 35px;
    border: 2px solid black;
}

.quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #9ba6a5; 
}

.cta {
    text-align: center;
    background: #757a79; 
    padding: 20px;
}

.footer {
    text-align: center;
    background-color: #E5E7EB;
}