body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #f5f5f5;
    box-sizing: border-box;
}

header {
    background-color: #7b5df7;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;

}

h1:hover{
    color: #ffd700;
}

.menu ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.menu ul li {
    margin: 0 15px;
}

.menu ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.menu ul li a:hover {
    color: #ffd700;
}

/* About Banner */
.about-banner {
    background-color: #f8d7da;
    text-align: center;
    padding: 50px 20px;
    margin-bottom: 20px;
    color: #ea0b0b;
}

.about-banner h2 {
    margin: 0;
    font-size: 32px;
}

.about-banner p {
    margin-top: 10px;
    font-size: 18px;
    color: #444;
}

/* About Content */
.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
    background-color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin: 20px;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    margin-right: 20px;
    color: #333;
}

.about-text h3 {
    color: #7b5df7;
    margin-bottom: 10px;
    font-size: 24px;
}

.about-text p, ul {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 16px;
}

.about-text ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 680px;
    height: 400px;
    border-radius: 20px;
    box-shadow: 10px 4px 8px rgba(0,0,0,0.2);
}

/* Footer Styles */

footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}

footer p {
    margin: 5px;
    font-size: 14px;
}

footer a {
    color: #7b5df7;
    text-decoration: none;
    margin: 0 5px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ffd700;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        margin: 10px;
    }

    .about-text {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .about-text p, ul {
        font-size: 14px;
    }

    .about-image {
        margin-top: 15px;
    }

    .about-image img {
        max-width: 220px;
        border-radius: 8px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }
}
