* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e6d5d5;
    color: #333;
    line-height: 1.6;
}



.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-logo {
    width: 80px;
    margin-right: 20px;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 16px;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 5px;
}


nav ul li a:hover {
    background-color: white;
    color: #e60000;
}


main {
    padding: 40px 20px;
    text-align: center;
}

.about-section {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #e60000;
}

.about-content {
    text-align: left;
    line-height: 1.8;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #555;
}

@media (max-width: 768px) {
    .about-section {
        padding: 20px;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .about-content p {
        font-size: 16px;
    }
}
