
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            color: #333;
            background: #f8f9fa;
        }

        /* Hero */
        .about-hero {
            background: linear-gradient(
                rgba(0, 0, 0, 0.55),
                rgba(0, 0, 0, 0.55)
            ),
            url('https://images.unsplash.com/photo-1469474968028-56623f02e42e')
            center/cover;

            height: 350px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .about-hero h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .about-hero p {
            font-size: 18px;
        }

        /* About Section */
        .about-section {
            max-width: 1100px;
            margin: 70px auto;
            padding: 0 20px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image img {
            width: 100%;
            border-radius: 15px;
            display: block;
        }

        .about-text h2 {
            font-size: 34px;
            margin-bottom: 20px;
            color: #222;
        }

        .about-text h2 span {
            color: #f97316;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin-bottom: 15px;
        }

        /* Features */
        .features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .feature-box {
            background: white;
            padding: 30px 20px;
            text-align: center;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .feature-box .icon {
            font-size: 35px;
            margin-bottom: 15px;
        }

        .feature-box h3 {
            margin-bottom: 10px;
            color: #222;
        }

        .feature-box p {
            color: #666;
            line-height: 1.6;
            font-size: 14px;
        }

        /* CTA */
        .about-cta {
            background: #f97316;
            color: white;
            text-align: center;
            padding: 50px 20px;
            margin-top: 70px;
        }

        .about-cta h2 {
            font-size: 32px;
            margin-bottom: 12px;
        }

        .about-cta p {
            margin-bottom: 25px;
        }

        .about-cta a {
            display: inline-block;
            background: white;
            color: #f97316;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
        }

        /* Responsive */
        @media (max-width: 768px) {

            .about-hero {
                height: 280px;
            }

            .about-hero h1 {
                font-size: 36px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .features {
                grid-template-columns: 1fr;
            }

            .about-text h2 {
                font-size: 28px;
            }
        }
