body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: #000;
    padding: 1rem 0;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff4b4b;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.75rem;
    color: #fff;
}

/* About Section */
.about-section {
    background-color: #f0f0f0;
    padding: 80px 0;
}

.about-section h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #212529;
    margin-bottom: 40px;
    text-align: center;
}

.about-section h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #212529;
    margin-top: 40px;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-section ul {
    list-style-type: disc;
    padding-left: 40px;
    font-size: 1.1rem;
    color: #555;
}

.about-section ul li {
    margin-bottom: 10px;
}

/* Adding a subtle background for section text for a modern effect */
.about-section .text-content {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    margin-bottom: 40px;
}

/* Buttons and Links */
.about-section .btn {
    background-color: #ff4b4b;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.about-section .btn:hover {
    background-color: #e64545;
    transform: translateY(-3px);
}

.about-section a {
    color: #ff4b4b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.about-section a:hover {
    color: #e64545;
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 1rem;
}

footer a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    color: #ff4b4b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section h1 {
        font-size: 2.5rem;
    }

    .about-section h3 {
        font-size: 1.75rem;
    }

    .about-section p {
        font-size: 1.1rem;
    }

    .about-section .text-content {
        padding: 20px;
    }

    .about-section .btn {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
}
