    /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            /* background: #f9f9fb; */
            color: #333;
        }

        /* Main section container */
        .section-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            margin-top: 70px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out forwards;
        }

        /* Left and right sections */
        .left-section, .right-section {
            flex: 1 1 50%;
            min-width: 300px;
        }

        /* Left section content with staggered animations */
        .left-section h1 {
            font-size: 2.5rem;
            margin-bottom: 12px;
            color: #222;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease-out 0.2s forwards;
        }

        .left-section p {
            font-size: 1.1rem;
            margin-bottom: 24px;
            color: #555;
            line-height: 1.6;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease-out 0.4s forwards;
        }

        .counter {
            font-size: 2.2rem;
            font-weight: 700;
            color: #6a1b9a;
            margin-bottom: 24px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease-out 0.6s forwards;
        }

        .social-buttons {
            display: flex;
            gap: 16px;
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease-out 0.8s forwards;
        }

        /* Social button - metallic purple */
        .social-button {
            display: inline-flex;
            align-items: center;
            padding: 12px 24px;
            background: linear-gradient(135deg, #9c27b0, #6a1b9a);
            color: white;
            text-decoration: none;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 
                0 4px 15px rgba(106, 27, 154, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .social-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .social-button:hover::before {
            left: 100%;
        }

        .social-button:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 8px 20px rgba(106, 27, 154, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
        }

        .social-button i {
            margin-right: 10px;
            font-size: 1.3rem;
        }

        /* Right section - image */
        .right-section {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .profile-image {
            width: 750px;
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); */
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out 0.3s forwards;
        }

        /* Slide-up animation */
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 992px) {
            .section-container {
                flex-direction: column;
                text-align: center;
                padding: 40px 15px;
            }

            .left-section, .right-section {
                flex: 1 1 100%;
            }

            .left-section h1 {
                font-size: 2.2rem;
            }

            .social-buttons {
                justify-content: center;
            }

            .profile-image {
                width: 100%;
                max-width: 480px;
            }
        }

        @media (max-width: 576px) {
            .left-section h1 {
                font-size: 1.9rem;
            }

            .counter {
                font-size: 1.9rem;
            }

            .social-button {
                padding: 10px 18px;
                font-size: 0.9rem;
            }
        }