body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    background: #4aa5a0;
    color: #fff;
    padding: 1rem 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

header ul li {
    margin-left: 20px;
}

header ul li a {
    color: #fff;
    text-decoration: none;
}

.hero {
    background: #f4f4f4;
    text-align: center;
    padding: 2rem 0;
}

.hero h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #333;
}

.hero p {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.hero .cta-buttons a {
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    margin: 0.5rem;
    border-radius: 5px;
}

.btn-primary {
    background: #416c99;
    color: #fff;
}

.btn-secondary {
    background: #6c757d;
    color: #fff;
}

.about, .features, .research {
    padding: 2rem 0;
    text-align: center;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.feature-item {
    padding: 1rem;
    background: #DEE9F3;
    border: 1px solid #2d6f6d;
    border-radius: 5px;
}

footer {
    background: #2d6f6d;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}
.features-image {
    text-align: center;
    margin-top: 2rem;
}

.features-image img {
    max-width: 70%;
    height: auto;
    }

.features-image2 img {
float: right; /* Align image to the right */
 width: 30%; /* The image will take up 80% of the container's width */
    max-width: 100px; /* Set a maximum width */
    height: auto; /* Maintain aspect ratio */
}

.features-image3 img {
float: right; /* Align image to the right */
 width: 20%; 
    max-width: 130px; /* Set a maximum width */
    height: auto; /* Maintain aspect ratio */
}


.image-caption {
    font-size: 0.9rem;
    color: #555;
    margin-top: 0.5rem;
}


.carousel {
    position: relative;
    max-width: 600px; /* Set max-width for the carousel */
    margin: auto;
    overflow: hidden;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.carousel-images {
    display: flex;
    transition: transform 0,5s ease-in-out;
}

.carousel-images img {
    width: 100%;
    flex-shrink: 0;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.carousel-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.carousel-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}