/* Modern and attractive styling for about page */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #e8f5e9;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    display: inline-block;
    font-size: 24px;
    color: #000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.2);
}

nav {
    float: right;
    margin-top: 5px;
}

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

nav ul li {
    display: inline-block;
    margin-left: 25px;
}

nav ul li a {
    color: #000 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

nav ul li a:hover {
    background-color: rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

nav ul li a i {
    color: #000;
    font-size: 16px;
}

nav ul li a.active {
    background-color: #000;
    color: #fff !important;
}

nav ul li a.active i {
    color: #fff;
}

/* About Section Styles */
.about-section {
    padding: 50px 0;
    background-color: #fff;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-section h2 {
    color: #4CAF50;
    font-size: 28px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-section p {
    color: #333;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-section ul {
    list-style: none;
    padding-left: 20px;
}

.about-section ul li {
    color: #333;
    font-size: 16px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-section ul li:before {
    content: "•";
    color: #4CAF50;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

footer p {
    color: #fff;
    font-weight: 500;
    font-size: 14px;
}

.fas {
    color: #4CAF50;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        padding: 15px 0;
    }

    nav {
        float: none;
        margin-top: 15px;
        text-align: center;
    }

    nav ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    nav ul li {
        margin: 5px;
    }

    nav ul li a {
        font-size: 16px;
        padding: 6px 12px;
    }

    .about-section {
        margin: 1rem;
        padding: 2rem 1rem;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }
}
