body {
    background-color: #121212;
    color: #f0f0f0;
}

/* Styling for the About page */

/* Hero Section */
.about-hero {
    padding: 6rem 2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #00bfff, #8a2be2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #00bfff; /* Fallback color */
}

.about-hero p {
    font-size: 1.2rem;
    color: #a0a0a0;
}

/* Main About Sections */
.about-section {
    padding: 4rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-container {
    margin-bottom: 3rem;
    background-color: #1a1a1a;
    padding: 2.5rem;
    border-radius: 10px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: #f0f0f0;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #333;
    padding-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    color: #d0d0d0;
    line-height: 1.8;
}

/* List Styling for "Our History" and "Our Values" */
.about-list,
.about-values-list {
    list-style: none; /* Removes default bullets */
    padding: 0;
    margin: 0;
}

.about-list li,
.about-values-list li {
    background-color: #242424;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    transition: transform 0.3s ease-in-out;
}

.about-list li:hover,
.about-values-list li:hover {
    transform: translateY(-5px);
}

.about-values-list li strong {
    color: #00bfff;
}

hr {
    border: none;
    height: 2px;
    background: linear-gradient(to right, transparent, #00bfff, #8a2be2, transparent);
    margin: 3rem 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }
}



