         /* Base Styles */
        body {
            margin: 0;
            font-family: 'Lato', sans-serif;
            color: #F5F5F5;
            background-color: #1B2B36;
        }

        /* Header */
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #1B2B36;
        }

        header img {
            height: 50px;
        }

        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: #D4AF37;
            text-decoration: none;
            font-weight: bold;
        }

        nav a:hover {
            text-decoration: underline;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #D4AF37;
        }

         .mobile-nav {
            display: none;
            flex-direction: column;
            gap: 15px;
            background-color: rgba(27, 43, 54, 0.85);
            position: absolute;
            top: 60px;
            right: 20px;
            height: 100%;
            width: 200px;
            padding: 20px;
            box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
            transition: right 0.3s ease-in-out;
        }

        .mobile-nav a {
            color: #D4AF37;
            text-decoration: none;
            font-weight: bold;
        }

        @media (max-width: 768px) {
            nav {
                display: none;
            }

            .hamburger {
                display: flex;
            }

            .mobile-nav {
                display: none;
            }

            .mobile-nav.active {
                display: flex;
				right: 0;
            }
        }

        /* Hero Section */
        .hero {
            background-image: url('img/fincas.jpg'); /* Replace with the actual image path */
            background-size: cover;
            background-position: center;
            text-align: center;
            padding: 100px 20px;
            color: #F5F5F5;
        }

        .hero h1 {
            font-size: 3rem;
            color: #D4AF37;
        }

        .hero p {
            font-size: 1.5rem;
            margin: 20px 0;
        }

        /* Content Section */
        .content {
            padding: 50px 20px;
            text-align: center;
        }

        .content h2 {
            font-size: 2.5rem;
            color: #D4AF37;
            margin-bottom: 20px;
        }

        .etapa {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 30px auto;
            padding: 20px;
            max-width: 800px;
            background-color: #1B2B36;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
        }

        .etapa img {
            width: 200px;
            height: auto;
            border: 3px solid #D4AF37;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
        }

        .etapa .descripcion {
            flex: 1;
            text-align: left;
        }

        .etapa h2 {
            color: #D4AF37;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 20px;
            background-color: #1B2B36;
        }

        footer p {
            margin: 0;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero {
                padding: 50px 10px;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .content h2 {
                font-size: 2rem;
            }

            .etapa {
                flex-direction: column;
                text-align: center;
            }

            .etapa img {
                margin-bottom: 10px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 1rem;
            }
        }