* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            color: #333;
            background-color: #f5f5f5;
        }

        a {
            text-decoration: none;
        }

        /* HEADER */
        header {
            background: linear-gradient();
            color: #F5F5F5
            padding: 80px 20px;
            text-align: center;
        }

        header h1 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        header p {
            font-size: 18px;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .btn {
            background-color: #FFA500;
            color: #FFFFFF;
            padding: 15px 30px;
            border-radius: 6px;
            font-weight: 600;
            transition: 0.3s;
        }

        .btn:hover {
            background-color: #FF8C00;
        }

        /* SECTIONS */
        section {
            padding: 70px 20px;
            max-width: 1200px;
            margin: auto;
        }

        section h2 {
            text-align: center;
            font-size: 32px;
            margin-bottom: 20px;
        }

        section p.section-desc {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 50px;
            color: #555;
        }

        /* SERVICES */
        .services {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }

        .service-box {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: 0.3s;
        }

        .service-box:hover {
            transform: translateY(-5px);
        }

        .service-box h3 {
            margin-bottom: 15px;
            color: #222;
        }

        .service-box p {
            color: #555;
            font-size: 15px;
            line-height: 1.6;
        }

        /* REFORMA */
        .highlight {
            
            color: #FFFFFF;
        }

        .highlight h2 {
            color: #cfa33f;
        }

        /* WHY */
        .why {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            text-align: center;
        }

        .why div {
            background: #F5F5F5;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }

        /* CTA */
        .cta {
            background: linear-gradient();
            color: #F5F5F5;
            text-align: center;
            padding: 60px 20px;
        }

        .cta h2 {
            margin-bottom: 20px;
        }

        /* FOOTER */
        footer {
            background: #F5F5F5;
            color: #FFFFFF;
            padding: 30px 20px;
            text-align: center;
            font-size: 14px;
        }

        footer span {
            color: #F5F5F5;
        }