
        .contact-container {
           
            padding-left: 20%;
            flex-wrap: wrap; /* Habilita la adaptación en pantallas pequeñas */
            background-color: #1c1c1c;
            color: #fff;
            padding: 20px;
            border-radius: 8px;
            max-width: 100%; /* Limita el ancho máximo */
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%; /* Se adapta al ancho del viewport en pantallas pequeñas */
        }
        .form-section, .info-section {
            flex: 1;
            padding: 35px;
            box-sizing: border-box;
        }
        .form-section h2, .info-section h3 {
            margin-top: 0;
        }
        .form-section input, .form-section textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 10px;
            border: none;
            border-radius: 5px;
        }
        .form-section input[type="submit"] {
            background-color: orange;
            color: white;
            font-weight: bold;
            cursor: pointer;
            border: none;
        }
        .form-section input[type="submit"]:hover {
            background-color: #ff8c00;
        }
        .info-section p {
            margin: 5px 0;
        }
        .info-section a {
            color: orange;
            text-decoration: none;
        }

        /* Media Queries para pantallas más pequeñas */
        @media (max-width: 768px) {
            .form-section, .info-section {
                flex: 100%; /* Cada sección ocupa el 100% del ancho en pantallas pequeñas */
            }
            .contact-container {
                flex-direction: column; /* Las secciones se apilan verticalmente */
            }
        }