* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background: #080808;
    color: #fff;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

#header {
    width: 100%;
    background: #080808; /* Change this if you need a different header background */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    padding: 20px 0;
}

.container {
    padding: 0 10%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.logo {
    width: 140px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 10px 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

nav ul li a::after {
    content: '';
    width: 0;
    height: 3px;
    background: #ff004f;
    position: absolute;
    left: 0;
    bottom: -6px;
    transition: 0.5s;
}

nav ul li a:hover::after {
    width: 100%;
}

.main-container {
    text-align: center;
    padding: 200px 10% 50px; /* Adjust padding to provide space for the fixed header */
}

h1 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 10px;
}
h3 {
color: #fff;
margin-bottom: 20px;
margin-top: 40px;
}
h2 {
    color: #fff;
    margin-bottom: 20px;
    margin-top: 40px;
    }
.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.image-container {
    margin-bottom: 30px;
    text-align: center;
}

.centered-image {
    width: 800px; /* Adjust the width as needed */
    height: auto; /* Maintain aspect ratio */
}

h4 {
    color: rgb(16, 141, 135);
    margin-top: 10px; /* Optional: Adjust the spacing between the image and text */
}
h5{
    color: #fff;
}
h1 {
    color: rgb(16, 141, 135);
}