/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Global Color Variables */
:root {
    --primary-color: #2E8B57; /* Leafy Green */
    --secondary-color: #3CB371; /* Medium Sea Green */
    --accent-color: #8FBC8F; /* Sea Green */
}

/* Header Styles */
.main-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.navbar-brand img {
    max-width: 180px;
}

.navbar-nav .nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    transition: all 0.3s ease;
    border-radius: 25px;
}

.navbar-nav .nav-link:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Register Now Button */
.navbar-nav .cta-button .btn-primary {
    background-color: var(--primary-color);
    color: white;
    border-radius: 25px;
    padding: 10px 20px;
    border: none;
}

.navbar-nav .cta-button .btn-primary:hover {
    background-color: var(--secondary-color);
}

.dropdown-menu {
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 200px;
}

.dropdown-menu .dropdown-item {
    color: #333;
    padding: 10px 20px;
    border-radius: 0;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #F0FFF0;
    color: var(--primary-color);
}

/* Buttons */
.btn {
    padding: 10px 20px;
    display: inline-block;
    border-radius: 25px;
    text-decoration: none;
    transition: none;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

.btn-primary:hover {
    background: var(--secondary-color);
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

/* Carousel Styles */
.hero-carousel {
    margin-top: 80px;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.carousel-slides {
    position: relative;
    width: 100%;
}

.carousel-slide {
    display: none;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.carousel-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    color: white;
}

.carousel-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(0,0,0,0.5);
    border-radius: 10px;
    display: inline-block;
}

.carousel-controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    padding: 1rem;
    cursor: pointer;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

.carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-indicator {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-indicator.active {
    opacity: 1;
}

.carousel-indicator:hover {
    opacity: 0.8;
}

/* Training Options Styles */
.training-options-bar {
    padding: 2rem 0;
    background: #f9f9f9;
}

.options-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.option-card {
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.option-icon i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Footer Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: #444;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 250px;
}

.newsletter-form button {
    padding: 10px 20px;
}

.form-status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.newsletter-form input.error {
    border: 2px solid #dc3545;
}

.newsletter-form input.success {
    border: 2px solid #28a745;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2fad73;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: var(--primary-color);
}

/* Address */
address {
    font-style: normal;
    line-height: 1.8;
    color: #ccc;
}

address a {
    color: #ccc;
    text-decoration: none;
}

address a:hover {
    color: var(--primary-color);
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.copyright p {
    font-size: 0.9rem;
    color: #999;
}

/* Faculty Spotlight */
.faculty-spotlight {
    padding: 3rem 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.faculty-card {
    text-align: center;
    padding: 1.5rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faculty-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.faculty-social a {
    color: var(--primary-color);
    margin: 0 0.5rem;
    font-size: 1.2rem;
}

/* Pricing Section */
.pricing-section {
    padding: 3rem 0;
    background-color: #F5FFFA;
    border: 2px solid var(--secondary-color);
}

.location-switcher {
    text-align: center;
    margin-bottom: 2rem;
}

.location-btn {
    padding: 10px 20px;
    border: 1px solid var(--primary-color);
    background: #fff;
    color: var(--primary-color);
    cursor: pointer;
    margin: 0 0.5rem;
    border-radius: 5px;
}

.location-btn.active {
    background: var(--primary-color);
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.pricing-card:hover {
    border: 2px solid var(--primary-color);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pricing-card .price {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

.pricing-card .currency {
    font-size: 1.5rem;
}

.pricing-card .period {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin: 1rem 0;
}

.pricing-card li {
    margin-bottom: 0.5rem;
}

.pricing-card .btn {
    margin-top: 1rem;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.popular-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #28a745;
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.payment-options {
    text-align: center;
    margin-top: 2rem;
}

.payment-icons img {
    height: 40px;
    margin: 0 0.5rem;
}

/* Accreditation */
.accreditation {
    padding: 3rem 0;
    background: #f9f9f9;
}

.badges-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.badges-grid img {
    height: 80px;
}

/* Video Section */
.video-section {
    padding: 3rem 0;
    background-color: #FAFFF0;
    border: 2px solid var(--accent-color);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-section .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.video-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-content {
    flex: 1;
    min-width: 300px;
}

/* Courses Hero */
.courses-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.courses-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Course Listings */
.courses-section {
    padding: 3rem 0;
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.course-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.course-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.course-details {
    margin: 1rem 0;
}

.course-details span {
    display: block;
    color: #666;
    margin-bottom: 0.5rem;
}

.course-details .price {
    font-size: 1.5rem;
    color: #f0f338;
    margin-top: 1rem;
}

.course-details .currency {
    font-size: 1.2rem;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    text-align: center;
    background: #f0f338;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Course Hero */
.course-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.course-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 2rem;
    border-radius: 10px;
}

/* Course Overview */
.course-overview {
    padding: 3rem 0;
}

.course-overview h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.course-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #f0f338;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* Curriculum */
.course-curriculum {
    padding: 3rem 0;
    background: #f9f9f9;
}

.course-curriculum h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.curriculum-list {
    list-style: none;
    max-width: 600px;
    margin: 0 auto;
}

.curriculum-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

/* Course Pricing */
.course-pricing {
    padding: 3rem 0;
    text-align: center;
}

.course-pricing h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pricing-details .price {
    font-size: 2rem;
    margin: 1rem 0;
    color: #2ea074;
}

.pricing-details .currency {
    font-size: 1.5rem;
}

.pricing-details .period {
    font-size: 1rem;
    color: #666;
}

/* Testimonials */
.course-testimonials {
    padding: 3rem 0;
}

.course-testimonials h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.testimonial-author {
    display: block;
    margin-top: 1rem;
    font-style: italic;
    color: #666;
}

/* About Home */
.about-home {
    padding: 3rem 0;
}

.about-home h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.about-home p {
    margin-bottom: 1rem;
    text-align: center;
}

.about-home .btn {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
}

/* Team Home */
.team-home {
    padding: 3rem 0;
    background: #f9f9f9;
}

.team-home h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.team-home p {
    margin-bottom: 1rem;
    text-align: center;
}

.team-home .btn {
    display: block;
    width: fit-content;
    margin: 1rem auto 0;
}

/* Contact Hero */
.contact-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-section {
    padding: 3rem 0;
    background-color: #F5FFFA;
    border: 2px solid var(--secondary-color);
}

.contact-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-cta p {
    margin-bottom: 1rem;
    color: #666;
    text-align: center;
}

.contact-cta .btn-primary {
    display: inline-block;
}

.contact-form h2,
.contact-details h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.success-message {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.error-message {
    color: #dc3545;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-info {
    list-style: none;
    margin: 1.5rem 0;
}

.contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 10px;
    color: #0e7937;
}

.contact-info a {
    color: #0e7937;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    margin-top: 1.5rem;
}

.social-links h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #0e7937;
    font-size: 1.5rem;
    margin: 0 10px;
    text-decoration: none;
}

.social-links a:hover {
    color: #0e7937;
}

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: #f9f9f9;
    text-align: center;
}

.map-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.map-container {
    margin: 1.5rem 0;
}

.map-container iframe {
    width: 100%;
    border-radius: 10px;
}

/* Team Images */
.team-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.team-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.team-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.team-card p:first-of-type {
    font-style: italic;
    color: #666;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.testimonial-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(2, 158, 72, 0.87);
    text-align: center;
    text-decoration: none;
    color: inherit;
    display: block;
}

.testimonial-card:hover {
    border: 2px solid var(--secondary-color);
}

.testimonial-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.testimonial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.testimonial-role {
    font-style: italic;
    color: #41ee89a6;
    margin-bottom: 1rem;
}

.testimonials-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Video Gallery Section */
.video-section {
    padding: 3rem 0;
    background-color: #FAFFF0;
    border: 2px solid var(--accent-color);
}

.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.video-item {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.video-section .btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.video-wrapper {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.video-container {
    flex: 1;
    min-width: 300px;
}

.video-content {
    flex: 1;
    min-width: 300px;
}

/* Enroll Hero */
.enroll-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.enroll-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Enrollment Section */
.enroll-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.enroll-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.enroll-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group .required {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.success-message {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.error-message {
    color: #dc3545;
    margin-bottom: 1rem;
    text-align: center;
}

.enroll-form .btn-primary {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

/* Testimonials Hero */
.testimonials-hero {
    padding: 3rem 0;
    background: #f5f7f5;
    text-align: center;
}

.testimonials-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Terms Hero */
.terms-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.terms-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Terms Section */
.terms-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.terms-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.terms-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.terms-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.terms-section em {
    color: #666;
    font-size: 0.9rem;
}

.terms-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.terms-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* Careers Hero */
.careers-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.careers-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Careers Section */
.careers-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.careers-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.careers-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.careers-section h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #006400;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.career-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.careers-section p {
    margin-bottom: 1rem;
}

.careers-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.careers-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.careers-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* FAQ Hero */
.faq-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.faq-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.faq-item p {
    margin-bottom: 0;
}

.faq-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.faq-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* Privacy Hero */
.privacy-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Privacy Section */
.privacy-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.privacy-section h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
    color: var(--primary-color);
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.privacy-section em {
    color: #666;
    font-size: 0.9rem;
}

.privacy-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.privacy-section a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.privacy-section .btn-primary {
    display: block;
    width: fit-content;
    margin: 2rem auto 0;
}

/* Blog Hero */
.blog-hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f4f4f4, #E8F5E9);
    text-align: center;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Blog Section */
.blog-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.blog-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.blog-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    overflow: hidden;
}

.blog-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card h3 {
    font-size: 1.3rem;
    margin: 1rem;
    color: var(--primary-color);
}

.blog-date {
    font-size: 0.9rem;
    color: #666;
    margin: 0 1rem;
}

.blog-card p {
    margin: 0 1rem 1rem;
}

.blog-read-more {
    display: block;
    margin: 0 1rem 1rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.blog-read-more:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.blog-section .btn-primary {
    margin: 0 auto;
}

/* Resources Hero */
.resources-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.resources-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Resources Section */
.resources-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.resources-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 1.5rem 0;
}

.resource-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

.resource-card.free::before {
    content: "FREE";
    display: block;
    background: var(--primary-color);
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.resource-card.premium::before {
    content: "PREMIUM";
    display: block;
    background: #006400;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.resource-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.resource-btn {
    display: inline-block;
    margin-top: 1rem;
}

.resource-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.resources-section .btn-primary {
    margin: 2rem auto 0;
}

/* Events Hero */
.events-hero {
    padding: 3rem 0;
    background: #f4f4f4;
    text-align: center;
}

.events-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Events Section */
.events-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.events-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.event-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: relative;
}

.event-date {
    background: var(--primary-color);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.event-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.event-card p {
    margin-bottom: 0.5rem;
}

.event-btn {
    display: inline-block;
    margin-top: 1rem;
}

.events-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

.events-section .btn-primary {
    margin: 2rem auto 0;
}

/* Stats Section */
.stats-section {
    padding: 3rem 0;
    background-color: #F5FFFA;
    border: 2px solid var(--secondary-color);
}

.stats-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #006400;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background-color: #F0FFF0;
    border: 2px solid var(--primary-color);
}

.about-section .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--primary-color);
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-text {
    grid-column: 1 / 2;
    grid-row: 1;
}

.about-image {
    grid-column: 2 / 3;
    grid-row: 1;
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #333;
}

/* Responsive Design */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-text {
        grid-column: 1;
        grid-row: 1;
    }
    .about-image {
        grid-column: 1;
        grid-row: 2;
    }
}

@media (max-width: 768px) {
    .navbar-brand img {
        max-width: 150px;
    }
    .carousel-slide img {
        max-height: 200px;
    }
    .carousel-content {
        top: 40%;
        font-size: 0.9rem;
    }
    .carousel-content h1 {
        font-size: 1.2rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-cta {
        text-align: center;
    }
}

/* Ensure consistent box sizing */
html {
    box-sizing: border-box;
    -webkit-text-size-adjust: 100%; /* Prevent font scaling in landscape */
}

*, *:before, *:after {
    box-sizing: inherit;
}

/* Footer Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 3rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: #444;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.newsletter-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter-form .input-group {
    max-width: 400px;
    width: 100%;
}

.newsletter-form input.form-control {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
}

.newsletter-form button {
    padding: 10px 20px;
}

.form-status {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    text-align: center;
}

.newsletter-form input.error {
    border: 2px solid #dc3545;
}

.newsletter-form input.success {
    border: 2px solid #28a745;
}

/* Footer Grid */
.footer-grid {
    margin-bottom: 2rem;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2fad73;
}

/* Social Media */
.social-media {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-media a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #2E8B57; /* --primary-color */
}

/* Address */
address {
    font-style: normal;
    line-height: 1.8;
    color: #ccc;
}

address a {
    color: #ccc;
    text-decoration: none;
}

address a:hover {
    color: #2E8B57; /* --primary-color */
}

/* Copyright */
.copyright {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #444;
}

.copyright p {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive Design for Newsletter Form */
@media (max-width: 768px) {
    .newsletter-form .input-group {
        flex-direction: column;
        gap: 0.5rem;
    }
    .newsletter-form input.form-control {
        width: 100%;
    }
    .newsletter-form button {
        width: fit-content;
        margin: 0 auto;
    }
}