body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa; /* Very light gray for overall background */
    color: #343a40; /* Dark gray for general text */
}

.navbar {
    margin-bottom: 20px;
    background-color: #e9f5db !important; /* Light green for navbar background */
}

.navbar-brand {
    color: #006d49 !important; /* Primary green for brand */
    font-weight: bold;
}

.navbar-nav .nav-link {
    color: #006d49 !important; /* Primary green for nav links */
}

.navbar-nav .nav-link.active {
    font-weight: bold;
    color: #004d35 !important; /* Darker green for active nav link */
}

.navbar-nav .nav-link:hover {
    color: #8fbe41 !important; /* Secondary green on hover */
}

.container {
    background-color: #ffffff; /* White background for main content area */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

h4, h5 {
    color: #006d49; /* Primary green for headings */
    margin-bottom: 15px;
}

.content ul {
    list-style-type: disc;
    padding-left: 20px;
}

.card {
    margin-top: 20px;
    border: 1px solid #8fbe41; /* Secondary green border for cards */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.card-header {
    background-color: #8fbe41; /* Secondary green for card header */
    color: white;
    font-weight: bold;
}

.btn-primary {
    background-color: #006d49; /* Primary green for buttons */
    border-color: #006d49;
}

.btn-primary:hover {
    background-color: #004d35; /* Darker green on button hover */
    border-color: #004d35;
}

footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #e9f5db; /* Light green for footer background */
    color: #006d49; /* Primary green for footer text */
    border-top: 1px solid #8fbe41; /* Secondary green border top */
}

/* Specific styles for tables */
.table th {
    background-color: #8fbe41;
    color: white;
    border-color: #006d49;
}

.table td {
    border-color: #e0e0e0;
}

/* Specific styles for gallery */
.gallery-item img {
    border: 1px solid #8fbe41; /* Secondary green border for gallery images */
}

/* Specific styles for team */
.employee {
    border-bottom: 1px solid #8fbe41; /* Secondary green border for employee separation */
}

.employee img {
    border: 3px solid #006d49; /* Primary green border for employee images */
}