        body {
            font-family: 'Poppins', sans-serif;
            height: 100vh;
            margin: 0;
            background-color: #f8f9fb;
            overflow-y: auto;
        }

        .header {
            background-color: black;
            color: white;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .header-nav {
            display: flex;
            gap: 15px;
        }

        .header-nav a {
            color: white;
            text-decoration: none;
            font-size: 16px;
            padding: 8px 12px;
            border-radius: 4px;
            transition: background-color 0.3s, color 0.3s;
        }

        .header-nav a:hover {
            background-color: #333;
            color: #00d2d3;
        }

        .header img {
            height: 40px;
        }

        .header h1 {
            margin: 0;
            margin-left: 10%;
            font-weight: 600;
            font-size: 24px;
        }

        .header-icon {
            width: 40px;
            height: 24px;
            margin-right: 10px;
        }

        .container1 {
            max-width: 1200px;
            margin: 20px auto;
            border-radius: 8px;
            padding: 20px;
        }

        .left-column,
        .right-column {
            width: 50%;
            padding: 10px;
            float: left;
        }

        .form-container,
        .result-container {
            width: 100%;
            margin-bottom: 20px;
        }

        .monaco-container {
            height: 600px;
            width: 100%;
            background-color: #ffffff;
            border-radius: 4px;
        }



        select {
            width: 100%;
            padding: 10px;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
            margin-bottom: 10px;
        }

        .title-row {
            margin-bottom: 20px;
            margin-left: 10px;
        }

        .title-row h2 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }


        .functionButton {
            background-color: transparent;
            border: 1px solid black;
            color: black;
            padding: 5px 10px;
            font-size: 14px;
            border-radius: 3px;
            /* Curva muy ligera en las esquinas */
            cursor: pointer;
            transition: background-color 0.3s ease;
            /* Efecto suave para hover */
        }

        .functionButton:hover {
            background-color: #008a8b;
            color: white;
            /* Cambia el color del texto al hacer hover para mejor contraste */
        }

        .footer {
            background-color: black;
            color: white;
            font-size: 14px;
            position: relative;
            bottom: 0;
            width: 100%;
        }

        .footer .social-links {
            margin-top: 10px;
        }

        .footer .social-links a {
            text-decoration: none;
            color: white;
            font-size: 40px;
            transition: color 0.3s ease;
        }

        .footer .social-links a:hover {
            color: #00d2d3;
        }

        .footer .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer .privacy-policy {
            margin-top: 10px;
        }

        .footer .privacy-policy a {
            text-decoration: none;
            color: white;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer .privacy-policy a:hover {
            color: #00d2d3;
        }

        .faq-section {
            background-color: #f8f9fb;
            padding: 40px 20px;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 30px;
        }

        .faq-item {
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 10px;
            background-color: white;
        }

        .faq-question {
            background-color: transparent;
            border: none;
            text-align: left;
            width: 100%;
            font-size: 18px;
            font-weight: 600;
            color: #333;
            cursor: pointer;
            padding: 10px;
        }

        .faq-question:hover {
            color: #00d2d3;
        }

        .collapse {
            margin-top: 10px;
            font-size: 16px;
            color: #555;
        }
        article img {
            max-width: 50%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 15px;
            align-items: flex-end;
        }