
        :root {
            --primary: #1a1a2e;
            --secondary: #16213e;
            --accent: #00ff88;
            --accent-dark: #00cc6a;
            --bg: #0f0f23;
            --bg-light: #1e1e3f;
            --text: #e8e8f0;
            --text-muted: #a8a8b8;
            --border: #2a2a4a;
            --shadow: rgba(0, 255, 136, 0.1);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        }

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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        .fbcw-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(15, 15, 35, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .fbcw-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 0;
        }

        .fbcw-logo img {
            height: 40px;
            width: auto;
        }

        .fbcw-nav-menu {
            display: flex;
            list-style: none;
            gap: 32px;
        }

        .fbcw-nav-link {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .fbcw-nav-link:hover {
            color: var(--accent);
        }

        .fbcw-nav-link.active {
            color: var(--accent);
        }

        .fbcw-nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

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

        .fbcw-mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 24px;
            cursor: pointer;
        }

        .fbcw-main {
            margin-top: 80px;
        }

        .fbcw-hero-about {
            padding: 96px 0;
            background: var(--gradient);
            position: relative;
            overflow: hidden;
        }

        .fbcw-hero-about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,255,136,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .fbcw-hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .fbcw-hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 24px;
            background: linear-gradient(135deg, var(--accent), #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .fbcw-hero-subtitle {
            font-size: clamp(1.1rem, 2vw, 1.3rem);
            color: var(--text-muted);
            margin-bottom: 48px;
            line-height: 1.8;
        }

        .fbcw-section {
            padding: 96px 0;
        }

        .fbcw-section:nth-child(even) {
            background: var(--bg-light);
        }

        .fbcw-section-title {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 64px;
            color: var(--accent);
        }

        .fbcw-mission-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 48px;
            align-items: center;
        }

        .fbcw-mission-card {
            background: var(--gradient);
            padding: 48px;
            border-radius: 20px;
            border: 1px solid var(--border);
            box-shadow: 0 20px 40px var(--shadow);
            transition: all 0.3s ease;
        }

        .fbcw-mission-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px var(--shadow);
        }

        .fbcw-mission-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            display: block;
        }

        .fbcw-mission-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: var(--accent);
        }

        .fbcw-mission-text {
            color: var(--text-muted);
            line-height: 1.8;
        }

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

        .fbcw-team-member {
            background: var(--bg-light);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .fbcw-team-member:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
        }

        .fbcw-team-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: var(--gradient);
            margin: 0 auto 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
        }

        .fbcw-team-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--accent);
        }

        .fbcw-team-role {
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .fbcw-team-bio {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .fbcw-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 32px;
        }

        .fbcw-value-item {
            text-align: center;
            padding: 32px 24px;
        }

        .fbcw-value-icon {
            font-size: 3rem;
            margin-bottom: 24px;
            display: block;
            color: var(--accent);
        }

        .fbcw-value-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .fbcw-value-text {
            color: var(--text-muted);
            line-height: 1.7;
        }

        .fbcw-timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .fbcw-timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--accent);
            transform: translateX(-50%);
        }

        .fbcw-timeline-item {
            position: relative;
            margin-bottom: 48px;
            display: flex;
            align-items: center;
        }

        .fbcw-timeline-item:nth-child(odd) {
            flex-direction: row;
        }

        .fbcw-timeline-item:nth-child(even) {
            flex-direction: row-reverse;
        }

        .fbcw-timeline-content {
            background: var(--bg-light);
            padding: 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            width: calc(50% - 32px);
            position: relative;
        }

        .fbcw-timeline-date {
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .fbcw-timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .fbcw-timeline-text {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .fbcw-timeline-dot {
            position: absolute;
            left: 50%;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

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

        .fbcw-contact-card {
            background: var(--bg-light);
            padding: 48px 32px;
            border-radius: 16px;
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s ease;
        }

        .fbcw-contact-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .fbcw-contact-icon {
            font-size: 3rem;
            color: var(--accent);
            margin-bottom: 24px;
            display: block;
        }

        .fbcw-contact-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .fbcw-contact-info {
            color: var(--text-muted);
            line-height: 1.6;
        }

        .fbcw-contact-link {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .fbcw-contact-link:hover {
            color: var(--accent-dark);
        }

        .fbcw-footer {
            background: var(--primary);
            padding: 64px 0 32px;
            border-top: 1px solid var(--border);
        }

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

        .fbcw-footer-section h3 {
            color: var(--accent);
            margin-bottom: 24px;
            font-size: 1.2rem;
        }

        .fbcw-footer-links {
            list-style: none;
        }

        .fbcw-footer-links li {
            margin-bottom: 12px;
        }

        .fbcw-footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .fbcw-footer-links a:hover {
            color: var(--accent);
        }

        .fbcw-footer-bottom {
            text-align: center;
            padding-top: 32px;
            border-top: 1px solid var(--border);
            color: var(--text-muted);
        }

        @media (max-width: 1024px) {
            .fbcw-container {
                padding: 0 20px;
            }
            
            .fbcw-section {
                padding: 64px 0;
            }
            
            .fbcw-hero-about {
                padding: 64px 0;
            }
        }

        @media (max-width: 768px) {
            .fbcw-nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--primary);
                flex-direction: column;
                padding: 24px;
                border-top: 1px solid var(--border);
            }

            .fbcw-nav-menu.active {
                display: flex;
            }

            .fbcw-mobile-toggle {
                display: block;
            }

            .fbcw-timeline::before {
                left: 24px;
            }

            .fbcw-timeline-item {
                flex-direction: column !important;
                align-items: flex-start;
                padding-left: 48px;
            }

            .fbcw-timeline-content {
                width: 100%;
            }

            .fbcw-timeline-dot {
                left: 24px;
            }

            .fbcw-mission-grid,
            .fbcw-contact-grid {
                gap: 32px;
            }

            .fbcw-mission-card {
                padding: 32px 24px;
            }
        }

        @media (max-width: 480px) {
            .fbcw-container {
                padding: 0 16px;
            }
            
            .fbcw-section {
                padding: 48px 0;
            }
            
            .fbcw-hero-about {
                padding: 48px 0;
            }

            .fbcw-mission-card,
            .fbcw-contact-card {
                padding: 24px;
            }

            .fbcw-team-member {
                padding: 24px;
            }
        }
    