
        :root {
            --primary-color: #8B4513;
            --secondary-color: #FFC080;
            --white: #FFFFFF;
            --text-dark: #333333;
            --pastel-yellow: #eecd48;
            --pastel-pink: #FFC5C5;
        }

        .hero-banner {
            background: var(--primary-color);
            position: relative;
            overflow: hidden;
            padding: 120px 0;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: url('img/pattern.png') repeat;
            opacity: 0.1;
        }

        .hero-banner .display-4 {
            color: var(--white);
            position: relative;
        }

        .hero-banner .lead {
            color: rgba(255, 255, 255, 0.9);
        }

        .about-section {
            padding: 80px 0;
            background: var(--pastel-yellow);
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
        }

        .about-image::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 30%;
            background: linear-gradient(transparent, rgba(139, 69, 19, 0.7));
        }

        .feature-box {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
            margin: 15px 0;
            transition: all 0.3s ease;
            border-bottom: 4px solid var(--secondary-color);
        }

        .feature-box:hover {
            transform: translateY(-10px);
            background: var(--pastel-pink);
        }

        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .team-section {
            padding: 80px 0;
            background: var(--white);
        }

        .team-member {
            position: relative;
            margin-bottom: 30px;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
        }

        .team-member img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .team-member:hover img {
            transform: scale(1.1);
        }

        .team-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            background: linear-gradient(transparent, rgba(139, 69, 19, 0.9));
            color: var(--white);
        }

        .team-info h4 {
            margin: 0;
            font-size: 1.25rem;
        }

        .team-info p {
            margin: 5px 0 0;
            opacity: 0.9;
            font-size: 0.9rem;
        }

        .stats-counter {
            background: var(--secondary-color);
            color: var(--text-dark);
            padding: 60px 0;
            text-align: center;
        }

        .counter-item {
            margin: 20px 0;
        }

        .counter-item .number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
            color: var(--primary-color);
        }

        .counter-item .label {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        .testimonial {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            margin: 20px 0;
            box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
            border-left: 4px solid var(--secondary-color);
        }

        .testimonial:hover {
            background: var(--pastel-yellow);
            transform: translateY(-5px);
            transition: all 0.3s ease;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            border: 3px solid var(--secondary-color);
        }

        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            color: var(--primary-color);
            font-weight: bold;
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--secondary-color);
        }

        .mission-vision-values {
            padding: 80px 0;
            background: var(--white);
        }

        .mvv-card {
            height: 100%;
            background: var(--white);
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
            transition: all 0.3s ease;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .mvv-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--secondary-color);
        }

        .mvv-card:hover {
            transform: translateY(-10px);
            background: var(--pastel-yellow);
        }

        .mvv-card i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .mvv-card h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: bold;
        }

        .mvv-card p {
            color: var(--text-dark);
            font-size: 1.1rem;
            line-height: 1.6;
            margin: 0;
        }

        .navbar-brand, .nav-link {
            color: var(--white) !important;
        }
        .nav-link:hover {
            color: var(--secondary-color) !important;
        }
    