
:root {
    --primary-color: #4B7A4C;
    --primary-dark: #3c613d;
    --primary-light: #6b996c;
    --accent-color: #f8b042;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(75, 122, 76, 0.9), rgba(75, 122, 76, 0.8)), 
                url('/api/placeholder/1920/1080') center/cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-form {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-info {
    background: var(--primary-color);
    color: white;
    border-radius: 15px;
    padding: 2.5rem;
}

.stats-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-5px);
}

.stats-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

footer {
    background: var(--primary-color);
    color: white;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(75, 122, 76, 0.25);
}

 /* Keeping the same styles from home page */
 :root {
    --primary-color: #4B7A4C;
    --primary-dark: #3c613d;
    --primary-light: #6b996c;
    --accent-color: #f8b042;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    padding-top: 76px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.text-primary {
    color: var(--primary-color) !important;
}

.course-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-price {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.course-features {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.page-header {
    background: linear-gradient(rgba(75, 122, 76, 0.9), rgba(75, 122, 76, 0.8)), 
                url('/api/placeholder/1920/400') center/cover;
    padding: 4rem 0;
    color: white;
}

footer {
    background: var(--primary-color);
    color: white;
}

.social-link {
    color: white;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.category-filter {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}
