/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

header {
    background-color: #18275b;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

header nav h1 {
    margin: 0;
    font-size: 1.8rem;
}

header nav ul {
    list-style-type: none;
}

header nav ul li {
    display: inline;
    margin-right: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 50px 0;
}

.about-section .container {
    width: 80%;
    margin: 0 auto;
}

.about-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.about-section p {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
    font-size: 1.1rem;
}

.about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.image-section img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-section {
    max-width: 600px;
    margin-left: 40px;
}

.text-section h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
}

.text-section ul {
    list-style-type: none;
}

.text-section ul li {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #666;
}

.text-section ul li strong {
    color: #333;
}

/* Footer Section */
footer {
    text-align: center;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 5px 0;
}

footer p a {
    color: #fff;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .text-section {
        margin-left: 0;
        margin-top: 20px;
    }
}
