/* Reset some default styles */
body, h1, h2, h3, p, ul {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* General styles */
body {
    line-height: 1.6;
    font-size: 16px;
    color: #333;
    background-color: #000;
    padding: 20px;
}

header {
    background-color: #0073e6;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fcf8f8;
    padding: px 10px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #0056b3;
    border-radius: 5px;
}

/* Sections */
section {
    padding: 40px 20px;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

h3 {
    padding: 10px;
    text-align: center;
    color: #fff;
    border-radius: 5px;
}

#about h3 {
    background-color: #0073e6;
}

#features h3 {
    background-color: #0056b3;
}

#team h2 {
    text-align: center;
    margin-bottom: 20px;
}

.TEAM-MEMBERS, .TEAM-MEMBERS2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px;
}

.TEAM-MEMBERS img, .TEAM-MEMBERS2 img {
    border-radius: 50%;
    margin-bottom: 10px;
}

#contact {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
}

label {
    margin-bottom: 10px;
    font-weight: bold;
}

input[type="text"], input[type="number"] {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 20px;
}

button {
    background-color: #0073e6;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #0056b3;
}

#status {
    text-align: center;
    margin-top: 20px;
}

/* Portfolio section */
#PORTFOLIO {
    text-align: center;
}

#PORTFOLIO img {
    max-width: 100%;
    border-radius: 8px;
}

/* Footer */
footer {
    background-color: #0073e6;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer .contact-support {
    margin-bottom: 20px;
}

footer .contact-support p {
    margin: 5px 0;
}

footer .copyright {
    font-size: 14px;
}
