 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #333;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Animated background particles */
        .particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .particle:nth-child(1) { width: 4px; height: 4px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 6px; height: 6px; top: 80%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 3px; height: 3px; top: 40%; right: 10%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 5px; height: 5px; top: 60%; right: 20%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 4px; height: 4px; top: 10%; left: 50%; animation-delay: 4s; }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.7; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
        }

        /* Header Section */
        .header {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
            backdrop-filter: blur(20px);
            padding: 20px 0;
            position: relative;
            z-index: 100;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-size: 2.5rem;
            font-weight: bold;
            color: #2c3e50;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 20px rgba(108, 122, 137, 0.5); }
            to { text-shadow: 0 0 30px rgba(108, 122, 137, 0.8); }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
        }

        .nav-links a {
            color: #34495e;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #6c7ae0, #a8edea);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::before {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            padding: 100px 0;
            text-align: center;
            position: relative;
            z-index: 10;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 4rem;
            color: #2c3e50;
            margin-bottom: 20px;
            animation: slideInDown 1s ease-out;
        }

        .hero p {
            font-size: 1.3rem;
            color: #7f8c8d;
            max-width: 600px;
            margin: 0 auto 40px;
            animation: fadeIn 1s ease-out 0.5s both;
        }

        @keyframes slideInDown {
            from { opacity: 0; transform: translateY(-50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Main Content */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 10;
        }

        /* Story Section */
        .story-section {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            animation: slideUp 1s ease-out 0.3s both;
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .story-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .story-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #6c7ae0, #a8edea);
            border-radius: 2px;
        }

        .story-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .story-text {
            font-size: 1.1rem;
            color: #34495e;
            line-height: 1.8;
        }

        .story-image {
            text-align: center;
        }

        .story-image img {
            width: 100%;
            max-width: 400px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
            transition: transform 0.3s ease;
        }

        .story-image img:hover {
            transform: scale(1.05);
        }

        /* Founders Section */
        .founders-section {
            background: rgba(248, 249, 250, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            animation: slideUp 1s ease-out 0.5s both;
        }

        .founders-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .founders-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #6c7ae0, #a8edea);
            border-radius: 2px;
        }

        .founders-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .founder-card {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .founder-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.5s;
        }

        .founder-card:hover::before {
            left: 100%;
        }

        .founder-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.2);
        }

        .founder-avatar {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #6c7ae0, #a8edea);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            font-weight: bold;
        }

        .founder-name {
            font-size: 1.5rem;
            color: #2c3e50;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .founder-role {
            color: #7f8c8d;
            margin-bottom: 20px;
            font-style: italic;
        }

        .founder-bio {
            color: #34495e;
            line-height: 1.6;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(240,240,240,0.9));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            animation: slideUp 1s ease-out 0.7s both;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 30px;
            border-radius: 15px;
            background: rgba(255, 255, 255, 0.5);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: scale(1.05);
        }

        .stat-number {
            font-size: 3rem;
            color: #6c7ae0;
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #34495e;
            font-weight: 600;
        }

        /* Reviews Section */
        .reviews-section {
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            animation: slideUp 1s ease-out 0.9s both;
        }

        .reviews-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .reviews-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #6c7ae0, #a8edea);
            border-radius: 2px;
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .review-card {
            background: rgba(248, 249, 250, 0.8);
            border-radius: 15px;
            padding: 30px;
            position: relative;
            transition: all 0.3s ease;
        }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        .review-stars {
            color: #f39c12;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

        .review-text {
            color: #34495e;
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .review-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .review-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6c7ae0, #a8edea);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
        }

        .review-info h4 {
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .review-info p {
            color: #7f8c8d;
            font-size: 0.9rem;
        }

        /* Social Media Section */
        .social-section {
            background: linear-gradient(135deg, rgba(108, 122, 224, 0.1), rgba(168, 237, 234, 0.1));
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 60px;
            margin-bottom: 60px;
            text-align: center;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            animation: slideUp 1s ease-out 1.1s both;
        }

        .social-section h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 20px;
        }

        .social-section p {
            color: #7f8c8d;
            margin-bottom: 40px;
            font-size: 1.1rem;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .social-link {
            display: inline-block;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #34495e;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .social-link.facebook:hover { background: #3b5998; color: white; }
        .social-link.instagram:hover { background: #e1306c; color: white; }
        .social-link.twitter:hover { background: #1da1f2; color: white; }
        .social-link.youtube:hover { background: #ff0000; color: white; }
        .social-link.linkedin:hover { background: #0077b5; color: white; }

        /* Footer */
        .footer {
            background: rgba(44, 62, 80, 0.9);
            color: white;
            text-align: center;
            padding: 40px 0;
            margin-top: 60px;
        }

        .footer p {
            margin-bottom: 20px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .footer-links a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: #a8edea;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .story-content { grid-template-columns: 1fr; }
            .story-section, .founders-section, .stats-section, .reviews-section, .social-section {
                padding: 40px 20px;
            }
            .nav-links { display: none; }
            .social-links { gap: 20px; }
            .social-link { width: 60px; height: 60px; font-size: 1.5rem; }
        }

        /* Scroll animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        body {
            font-family: Arial, sans-serif;
            background: #f5f5f5;
            padding: 50px;
            text-align: center;
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 50px 0;
        }

        .social-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .social-icon:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }

        .social-icon svg {
            width: 35px;
            height: 35px;
            fill: white;
        }

        .facebook {
            background: #1877f2;
        }

        .instagram {
            background: linear-gradient(45deg, #e4405f, #f093fb, #f5f501);
        }

        .telegram {
            background: #0088cc;
        }

        .youtube {
            background: #ff0000;
        }