   :root {
            --primary-red: #DB4444;
            --secondary-red: #E07575;
            --text-dark: #000000;
            --text-gray: #7D8184;
            --bg-light: #F5F5F5;
            --white: #FFFFFF;
            --success-green: #00FF66;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
        }

        /* Header Styles */
        .header {
            border-bottom: 1px solid #e0e0e0;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            padding: 1rem 0;
        }

        .logo a {
            font-size: 24px;
            font-weight: bold;
            color: var(--text-dark);
            text-decoration: none;
        }

        .nav a {
            color: var(--text-dark);
            text-decoration: none;
            margin: 0 20px;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s ease;
        }

        .nav a:hover,
        .nav a.active {
            color: var(--primary-red);
        }

        .nav a.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--primary-red);
        }

        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            border: none;
            background: var(--bg-light);
            padding: 12px 45px 12px 16px;
            border-radius: 4px;
            width: 250px;
            outline: none;
        }

        .search-icon {
            position: absolute;
            right: 12px;
            color: var(--text-dark);
            cursor: pointer;
        }

        .icon-button {
            margin: 0 10px;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .icon-button:hover {
            color: var(--primary-red);
        }

        .profile-img {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            object-fit: cover;
        }

        /* Breadcrumb */
        .breadcrumb-section {
            padding: 80px 0 40px;
            background: var(--white);
        }

        .breadcrumb {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 14px;
        }

        .breadcrumb-item + .breadcrumb-item::before {
            content: '/';
            color: var(--text-gray);
        }

        .breadcrumb-item a {
            color: var(--text-gray);
            text-decoration: none;
        }

        .breadcrumb-item.active {
            color: var(--text-dark);
        }

        /* Hero Section */
        .hero-section {
            padding: 60px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .hero-content h1 {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .hero-content p {
            font-size: 18px;
            color: var(--text-gray);
            margin-bottom: 30px;
            max-width: 600px;
        }

        .hero-image {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }

        .hero-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .hero-image:hover img {
            transform: scale(1.05);
        }

        /* Story Section */
        .story-section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 36px;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-left: 36px;
        }

        .section-title::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 20px;
            height: 40px;
            background: var(--primary-red);
            border-radius: 4px;
        }

        .story-text {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-gray);
            margin-bottom: 30px;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .stat-card {
            background: var(--white);
            padding: 40px 20px;
            border-radius: 12px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stat-card:hover {
            border-color: var(--primary-red);
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0,0,0,0.1);
        }

        .stat-icon {
            font-size: 48px;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: var(--text-gray);
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
        }

        .team-member {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }

        .team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .member-image {
            position: relative;
            overflow: hidden;
        }

        .member-image img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .member-image:hover img {
            transform: scale(1.1);
        }

        .member-info {
            padding: 30px 20px;
            text-align: center;
        }

        .member-name {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .member-role {
            font-size: 16px;
            color: var(--primary-red);
            margin-bottom: 15px;
        }

        .member-description {
            font-size: 14px;
            color: var(--text-gray);
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--bg-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--primary-red);
            color: var(--white);
            transform: scale(1.1);
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: var(--bg-light);
        }

        .value-item {
            text-align: center;
            padding: 40px 20px;
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            color: var(--white);
            font-size: 32px;
        }

        .value-title {
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .value-description {
            font-size: 16px;
            color: var(--text-gray);
            line-height: 1.6;
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 8px;
        }

        .footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer ul li a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 40px;
            text-align: center;
            color: #999;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 32px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .search-input {
                width: 200px;
            }
            
            .stat-card {
                margin-bottom: 30px;
            }
            
            .team-member {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 576px) {
            .nav a {
                margin: 0 10px;
            }
            
            .search-input {
                width: 150px;
            }
            
            .hero-content h1 {
                font-size: 28px;
            }
            
            .hero-content p {
                font-size: 16px;
            }
        }