/* Header Styles */
        .header-section {
            position: relative;
            height: 45vh;
            background: linear-gradient(135deg, #4eb8c0 0%, #1e73be 100%);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
        }
        
        .network-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.5;
        }
        
        .circle {
            position: absolute;
            border-radius: 50%;
            border: 2px solid rgba(0, 200, 255, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            animation: pulse 3s infinite alternate;
        }
        
        .circle:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0.2s;
        }
        
        .circle:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 50%;
            left: 20%;
            animation-delay: 0.5s;
        }
        
        .circle:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            left: 50%;
            animation-delay: 0.8s;
        }
        
        .circle:nth-child(4) {
            width: 90px;
            height: 90px;
            top: 60%;
            right: 15%;
            animation-delay: 1.1s;
        }
        
        .circle:nth-child(5) {
            width: 110px;
            height: 110px;
            top: 20%;
            right: 10%;
            animation-delay: 1.4s;
        }
        
        .line {
            position: absolute;
            background-color: rgba(0, 200, 255, 0.3);
            height: 2px;
            animation: glowLine 4s infinite alternate;
        }
        
        .line:nth-child(6) {
            width: 200px;
            top: 30%;
            left: 15%;
            transform: rotate(30deg);
            animation-delay: 0.3s;
        }
        
        .line:nth-child(7) {
            width: 250px;
            top: 50%;
            left: 25%;
            transform: rotate(-20deg);
            animation-delay: 0.6s;
        }
        
        .line:nth-child(8) {
            width: 180px;
            top: 40%;
            right: 20%;
            transform: rotate(45deg);
            animation-delay: 0.9s;
        }
        
        .circle-icon {
            width: 50%;
            height: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: rotate 10s linear infinite;
        }
        
        .header-content {
            position: relative;
            z-index: 10;
            text-align: center;
            padding: 0 20px;
        }
        
        .header-title {
            font-size: 4rem;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .gear-icon {
            position: absolute;
            opacity: 0.2;
            animation: rotateGear 15s linear infinite;
        }
        
        .gear-icon.large {
            width: 120px;
            height: 120px;
            top: -20px;
            left: 50%;
            margin-left: -60px;
            z-index: -1;
        }
        
        .gear-icon.medium {
            width: 80px;
            height: 80px;
            top: 10px;
            left: calc(50% + 50px);
            animation-direction: reverse;
            animation-duration: 10s;
        }
        
        .gear-icon.small {
            width: 60px;
            height: 60px;
            top: 20px;
            left: calc(50% - 80px);
            animation-duration: 7s;
        }
        
        .header-subtitle {
            display: inline-block;
            position: relative;
            font-size: 1.5rem;
            margin-bottom: 30px;
            padding: 8px 15px;
            overflow: hidden;
        }
        
        .header-subtitle::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 200, 255, 0.1);
            animation: slideIn 3s forwards;
        }
        
        .description-section {
            padding: 50px 20px;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transform: translateY(-50px);
            position: relative;
            z-index: 20;
            animation: fadeIn 1s ease-out;
            border-radius: 10px;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4ecf7 100%);
            width: 96%;
        }
        
        .description-text {
            font-size: 1.2rem;
            color: #333;
            max-width: 900px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* Animations */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.3;
            }
            100% {
                transform: scale(1.1);
                opacity: 0.5;
            }
        }
        
        @keyframes glowLine {
            0% {
                opacity: 0.3;
            }
            100% {
                opacity: 0.7;
            }
        }
        
        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes rotateGear {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }
        
        @keyframes slideIn {
            0% {
                width: 0;
            }
            100% {
                width: 100%;
            }
        }
        
        @keyframes fadeIn {
            0% {
                opacity: 0;
                transform: translateY(0);
            }
            100% {
                opacity: 1;
                transform: translateY(-50px);
            }
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .header-title {
                font-size: 3rem;
            }
            
            .header-subtitle {
                font-size: 1.2rem;
            }
            
            .description-text {
                font-size: 1rem;
            }
            
            .gear-icon.large {
                width: 90px;
                height: 90px;
                margin-left: -45px;
            }
            
            .gear-icon.medium {
                width: 60px;
                height: 60px;
                left: calc(50% + 30px);
            }
            
            .gear-icon.small {
                width: 40px;
                height: 40px;
                left: calc(50% - 60px);
            }

            .description-section {
                padding: 30px 15px;
                width: 92%;
            }
        }
        
        @media (max-width: 480px) {
            .header-section {
                height: 40vh;
            }
            
            .header-title {
                font-size: 2.5rem;
            }
            
            .description-section {
                padding: 30px 15px;
                width: 92%;
            }
        }
        
        /* Original paragraph styles */
        .original-content {
            padding: 20px;
            margin-top: 20px;
        }

