/* Philosophy Page Specific Styles */

body
{
    background: url('../images/ball.png') no-repeat center center fixed;
    background-size: cover; /* Ensures the image covers the entire screen */
}

/* General Styling for Article */
.philosophy {
    padding: 2rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.9); /* White background with 90% opacity */;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 2rem auto;
    line-height: 1.8;
    color: #333;
}

/* Headings Styling */
.philosophy h1 {
    font-size: 2.5rem;
    color: #2e61fc;
    margin-bottom: 1rem;
    text-align: center;
}

/* Paragraphs Styling */
.philosophy p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

/* List Styling */
.philosophy ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}

.philosophy ul li {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
}


