        /* Global Styles */
        :root {
            --primary: #2a4365;
            --secondary: #3182ce;
            --accent: #333;
            --light: #ebf8ff;
            --dark: #1a365d;
            --success: #38a169;
            --text: #4a5568;
            --hero: #666;
        }

        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background-color: #f7fafc;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        h1,
        h2,
        h3,
        h4 {
            margin-bottom: 1.5rem;
            color: var(--dark);
            font-weight: 700;
        }

        h1 {
            font-size: 2.5rem;
        }

        h2 {
            font-size: 2rem;
            position: relative;
            display: inline-block;
        }

        h2:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 60px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        p {
            margin-bottom: 1.25rem;
            font-size: 1.1rem;
        }

        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 12px 28px;
            border: none;
            border-radius: 6px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .btn:hover {
            background: #2c5282;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
        }

        .btn-accent {
            background: var(--accent);
        }

        .btn-accent:hover {
            background: var(--secondary);
        }

        .text-center {
            text-align: center;
        }

        .text-center h2:after {
            left: 50%;
            transform: translateX(-50%);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--hero), var(--primary));
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/img/web_hosting/background_1.avif') center/cover;
            opacity: 0.15;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: 0;
            right: 0;
            height: 100px;
            background: #f9f9f9;
            transform: skewY(-3deg);
            z-index: 1;
        }

        .hero .container {
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            color: white;
            line-height: 1.2;
        }

        .hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 2.5rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        /* Features Section */
        .features {
            background: white;
        }

        .section-intro {
            max-width: 800px;
            margin: 0 auto 3rem;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e2e8f0;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-color: var(--secondary);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 32px;
            transition: all 0.3s;
        }

        .feature-card:hover .feature-icon {
            background: var(--secondary);
            color: white;
        }

        /* Why Choose Us */
        .why-us {
            background: white;
        }

        .why-us-content {
            display: flex;
            align-items: center;
            gap: 50px;
            margin-top: 50px;
        }

        .why-us-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .why-us-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .why-us-points {
            flex: 1;
        }

        .why-us-point {
            display: flex;
            margin-bottom: 25px;
        }

        .why-us-icon {
            flex-shrink: 0;
            width: 50px;
            height: 50px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary);
            font-size: 20px;
            margin-right: 20px;
        }

        /* Testimonials */
        .testimonials {
            background: #f8fafc;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--text), var(--hero));
            color: white;
            text-align: center;
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .cta:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/assets/img/web_hosting/background_2.avif') center/cover;
            opacity: 0.1;
            z-index: 0;
        }

        .cta .container {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .cta h2:after {
            background: white;
        }

        .cta p {
            max-width: 700px;
            margin: 0 auto 2.5rem;
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .why-us-content {
                flex-direction: column;
            }

            .why-us-image {
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            section {
                padding: 60px 0;
            }

            .hero {
                padding: 100px 0;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .nav-links {
                display: none;
            }
        }

        @media (max-width: 576px) {
            section {
                padding: 50px 0;
            }

            h1 {
                font-size: 2rem;
            }

            h2 {
                font-size: 1.75rem;
            }
        }