* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

nav ul li a:hover {
    text-decoration: underline;
}


h1, h2, p {
    margin: 10px 0;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 50px 20px;
    height: auto;
    background-image: url('background-about.jpg');
    background-size: cover;
    background-position: center;
    color: black;
}

.about-info {
    text-align: center;
    margin: 0 auto;
    padding: 20px;
    max-width: 800px;
}

.about-info h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: black;
}

.about-info p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: black;
}

.about-image {
    width: 80%;
    display: block;
    margin-top: 30px;
    margin-left: auto;
    margin-right: auto;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}




.about-section img {
    width: 300px;
    height: auto;
    border-radius: 50px;
}








.header {
    background-color: #333;
    color: white;
    padding: 20px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}

.header-title {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 2px;
    margin: 0;
}

.nav-links ul {
    display: flex;
    list-style: none;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.nav-links ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
}

.nav-links ul li a:hover {
    text-decoration: underline;
}



.login {
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
    background-color: #333;
    color: white;
}




.footer {
    background-color: #333;
    color: white;
    padding: 40px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.footer-col {
    flex: 1;
    min-width: 280px;
}

.footer-col p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
}

.footer-col a:hover {
    text-decoration: underline;
}

a, a:visited {
    color: white;
    text-decoration: none;
}