* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2D8B3D;
    --primary-blue: #1E4D8B;
    --dark-green: #1E5F28;
    --light-green: #4CAF50;
    --light-blue: #3B6BA8;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --gray: #ECF0F1;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: left-center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark);
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-blue));
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.hero-slider {
    position: relative;
    height: 100vh;
    margin-top: 80px;
    overflow: hidden;
}

.slides {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
}

.slide.active {
    opacity: 1;
}

/*.slide::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    width: 100%;*/
/*    height: 100%;*/
/*    background: linear-gradient(135deg, rgba(45, 139, 61, 0.7), rgba(30, 77, 139, 0.7));*/
/*}*/

.slide-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 0 20px;
    color: var(--white);
}

.slide-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    max-width: 900px;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 2;
    transition: all 0.3s ease;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.5);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--white);
    width: 30px;
    border-radius: 6px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
}

.page-hero p {
    color: var(--white);
    font-size: 1.3rem;
}

.overview-section {
    background: var(--bg-light);
}

.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.overview-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.overview-image img {
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

/* About Page Styling */
.about-intro {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 8px solid #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive - Make it stack on mobile */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.events-preview,
.projects-preview,
.trainings-preview {
    background: var(--bg-light);
}

.events-grid,
.projects-grid,
.trainings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    padding: 20px;
    transition: all 0.3s ease;
}

.event-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.event-date {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.event-date .month {
    font-size: 0.9rem;
    display: block;
}

.event-content h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.event-content p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.event-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.project-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 20px;
}

.project-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.project-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.training-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.training-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.training-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.training-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.training-card:hover .training-image img {
    transform: scale(1.1);
}

.training-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.training-date {
    color: var(--white);
    font-weight: 600;
    font-size: 0.95rem;
}

.training-content {
    padding: 25px;
}

.training-content h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonials-section {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-card p {
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author h4 {
    color: var(--primary-green);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #BDC3C7;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--light-green);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-green);
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.developed-by {
    color: #BDC3C7;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.fade-in {
    animation: fadeIn 1s ease;
}

.fade-in-delay {
    animation: fadeIn 1s ease 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.animated {
    opacity: 1;
    transform: translateY(0);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-text h3 {
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-text p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-media {
    margin-top: 30px;
}

.social-links-large {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links-large a {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.social-links-large a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-form-wrapper h2 {
    margin-bottom: 15px;
}

.contact-form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-dark);
}

.required {
    color: #dc3545;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 139, 61, 0.1);
}

.error-message {
    display: block;
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
}

.btn-submit {
    width: 100%;
    border: none;
    cursor: pointer;
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-placeholder iframe {
    width: 100%;
    border-radius: 10px;
}

.mv-grid,
.services-grid,
.sustainability-grid,
.benefits-grid,
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mv-card,
.service-item,
.sustainability-card,
.benefit-item,
.impact-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover,
.service-item:hover,
.sustainability-card:hover,
.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.mv-icon,
.service-icon,
.sus-icon,
.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
}

.impact-card {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.impact-card p {
    font-size: 1.1rem;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.approach-number {
    min-width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.approach-text h3 {
    margin-bottom: 10px;
}

.program-card,
.course-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.program-card:hover,
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.course-image {
    position: relative;
    height: 400px;
    margin: -30px -30px 20px -30px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-green);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.project-header {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    padding: 30px;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.project-status {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-weight: 600;
}

.project-status.active {
    background: var(--light-green);
}

.project-icon-large {
    font-size: 3rem;
}

.project-body {
    padding: 30px;
}

.project-details {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
}

.project-features h4 {
    margin: 20px 0 15px;
    color: var(--primary-green);
}

.project-features ul {
    list-style: none;
}

.project-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-features i {
    color: var(--primary-green);
}

.event-item-large {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
}

.event-image-large {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.event-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge-large {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
}

.event-content-large {
    padding: 40px;
}

.event-meta-large {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-content-large h2 {
    margin-bottom: 20px;
    color: var(--primary-green);
}

.event-highlights {
    margin: 25px 0;
}

.event-highlights h4 {
    margin-bottom: 15px;
    color: var(--primary-blue);
}

.event-highlights ul {
    list-style: none;
}

.event-highlights li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.event-highlights i {
    color: var(--primary-green);
}

.event-actions {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.benefit-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.focus-area-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 30px;
    margin-bottom: 40px;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.focus-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    flex-shrink: 0;
}

.focus-content h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.focus-benefits {
    margin-top: 20px;
}

.focus-benefits h4 {
    margin-bottom: 12px;
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.focus-benefits ul {
    list-style: none;
}

.focus-benefits li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.focus-benefits i {
    color: var(--primary-green);
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.step-number {
    min-width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
}

@media (max-width: 992px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 300px;
        height: calc(100vh - 80px);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: right 0.3s ease;
        padding: 30px;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-link {
        padding: 15px 0;
        display: block;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .overview-content,
    .contact-wrapper,
    .event-item-large {
        grid-template-columns: 1fr;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .focus-area-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .focus-icon-box {
        margin: 0 auto 20px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    section {
        padding: 60px 0;
    }
    
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .event-actions {
        flex-direction: column;
    }
    
    .event-actions .btn {
        width: 100%;
    }
    
    .project-details {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .hero-slider {
        height: 70vh;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .slider-btn {
        padding: 10px 15px;
        font-size: 1.2rem;
    }
    
    .features-grid,
    .events-grid,
    .projects-grid,
    .trainings-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
    }
}



/* 
   STTZ Ethics Page Styles 
*/

:root {
    --sttz-green: #2D8B3D;
    --sttz-blue: #1E4D8B;
    --sttz-light-green: #DBF2DE;
    --sttz-light-blue: #ECF3FA;
    --text-dark: #1F2937;
    --text-light: #4B5563;
    --white: #FFFFFF;
    --gray-bg: #F9FAFB;
    
    --font-sans: 'Poppins', sans-serif;
    --font-serif: 'Playfair Display', serif;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }

.bg-light { background-color: var(--gray-bg); }

.max-width-medium {
    max-width: 800px;
    margin: 0 auto;
}

.mb-large { margin-bottom: 3rem; }

/* Typography */
.sttz-ethics-page {
    font-family: var(--font-sans);
    color: var(--text-light);
    line-height: 1.6;
}

.sttz-ethics-page h1, 
.sttz-ethics-page h2, 
.sttz-ethics-page h3 {
    font-family: var(--font-serif);
    color: var(--sttz-blue);
}

/* Hero Section */
.ethics-hero {
    position: relative;
    height: 400px;
    width: 100%;
    background-image: url('/attached_assets/stock_images/ethical tourism.jpg'); 
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(30, 77, 139, 0.9), rgba(30, 77, 139, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
    display: flex; 
    flex-direction: column;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    color: var(--sttz-light-green);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    margin: 0 0 2rem 0;
    line-height: 1.1;
    color: var(--white);
    text-align: center;
}

.hero-text {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
    color: #E5E7EB;
    text-align: center; 
}

.hero-meta .update-badge {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

/* Purpose Section */
.section-purpose {
    padding: 5rem 0;
    background-color: var(--white);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-lead {
    font-size: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Definitions Grid */
.section-definitions {
    padding: 5rem 0;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: var(--sttz-green);
    margin: 1rem auto 3rem auto;
    border-radius: 2px;
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.def-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border: 1px solid #E5E7EB;
    transition: all 0.3s ease;
}

.def-card:hover {
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-color: var(--sttz-light-green);
    transform: translateY(-2px);
}

.def-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--gray-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.icon-green { color: var(--sttz-green); }
.icon-amber { color: #F59E0B; }
.icon-red { color: #EF4444; }
.icon-purple { color: #8B5CF6; }

.def-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.def-text {
    font-size: 1rem;
    color: var(--text-light);
}

/* Scope Banner */
.section-scope {
    background-color: var(--sttz-blue);
    color: var(--white);
    padding: 3rem 0;
}

.flex-row-center {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.scope-icon {
    background-color: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 50%;
    font-size: 2rem;
    color: var(--sttz-light-green);
}

.scope-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.scope-text {
    color: var(--sttz-light-blue);
}

/* Policy Statements */
.section-policies {
    padding: 5rem 0;
    background-color: var(--white);
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.policy-item {
    display: flex;
    gap: 1.5rem;
}

.policy-icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--sttz-light-blue);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--sttz-blue);
}

.policy-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* Implementation Footer */
.section-implementation {
    padding: 4rem 0;
    border-top: 1px solid #E5E7EB;
}

.section-title-small {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--sttz-blue);
}

.sign-off {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--sttz-green);
    display: inline-block;
    min-width: 200px;
}

.sign-name {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--sttz-blue);
    margin-bottom: 0.25rem;
}

.sign-role {
    color: var(--sttz-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.sign-contact {
    font-size: 0.875rem;
    color: #9CA3AF;
    margin-top: 0.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .grid-4 { grid-template-columns: 1fr; }
    .policies-grid { grid-template-columns: 1fr; gap: 2rem; }
    .flex-row-center { flex-direction: column; text-align: center; }
}



/* MOBILE RESPONSIVE STYLES  */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3.5rem; }
    .section-title { font-size: 2.25rem; }
}

@media (max-width: 768px) {
    /* Hero Section */
    .ethics-hero { 
        height: auto; 
        min-height: 350px; 
        padding: 4rem 0; 
    }
    .hero-title { 
        font-size: 2.5rem; 
        margin-bottom: 1rem; 
    }
    .hero-text { 
        font-size: 1.1rem; 
        max-width: 100%; 
        padding: 0 1rem; 
    }
    .hero-subtitle { font-size: 0.9rem; }
    
    /* General Sections */
    .section-purpose,
    .section-definitions,
    .section-scope,
    .section-policies,
    .section-implementation {
        padding: 3rem 0;
    }
    
    .section-title { font-size: 2rem; margin-bottom: 1.5rem; }
    .section-lead { font-size: 1rem; }
    
    /* Grids */
    .grid-4 { grid-template-columns: 1fr; gap: 1.5rem; }
    .policies-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    
    /* Layouts */
    .flex-row-center { flex-direction: column; text-align: center; gap: 1.5rem; }
    
    .policy-item { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 1rem; 
    }
    .policy-icon { 
        width: 3rem; 
        height: 3rem; 
        font-size: 1.25rem; 
    }
    .policy-title { 
        font-size: 1.25rem; 
        margin-bottom: 0.5rem; 
    }
    .policy-text { font-size: 1rem; }
    
    .def-card { padding: 1.5rem; }
    .def-title { font-size: 1.25rem; }
    .def-text { font-size: 0.95rem; }
    
    .scope-title { font-size: 1.75rem; }
    .scope-text { font-size: 1.1rem; }
    
    .section-title-small { font-size: 1.75rem; }
    .section-text { font-size: 1rem; margin-bottom: 2rem; }
    
    .sign-name { font-size: 1.25rem; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-text { font-size: 1rem; }
    
    .section-title { font-size: 1.75rem; }
    
    .scope-icon { font-size: 2rem; padding: 1rem; }
    .scope-title { font-size: 1.5rem; }
    .scope-text { font-size: 1rem; }
}