/* About page specific styling */
/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

/* Navbar styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #7bbf7b; /* Soft green for a natural, calming feel */
    padding: 1rem 2rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo styling */
.navbar .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffffff;
    letter-spacing: 1px;
}

/* Navbar links container */
.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-links li {
    margin-left: 2rem;
}

/* Navbar links styling */
.nav-links a {
    text-decoration: none;
    font-size: 1rem;
    color: #ffffff; /* White text */
    transition: color 0.3s ease-in-out;
}

/* Hover effect for links */
.nav-links a:hover {
    color: #f4a261; /* A warm orange color */
}

/* Responsive design: Align navbar links vertically on smaller screens */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .nav-links {
        width: 100%;
        flex-direction: column;
        padding-top: 1rem;
    }
    
    .nav-links li {
        margin: 1rem 0;
    }
}




.about-section {
    padding: 2rem 2rem;
    background-color: #f3f4f6; /* Light gray background for contrast */
    text-align: center;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
}

.about-section h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.about-section p, .about-section ul {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-section h2 {
    font-size: 1.8rem;
    color: #7bbf7b; /* Soft green color for headings */
    margin-bottom: 1rem;
}

.about-section ul {
    list-style-type: none;
    padding: 0;
}

.about-section ul li {
    margin: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.about-section ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #7bbf7b; /* Green bullet point */
}


footer {
    text-align: center;
    padding: 1rem;
    background-color: #7bbf7b; /* Soft green background for the footer */
    color: white;
    margin-top: 260px;
}