        .container_reclamaciones {
            max-width: 1100px;
            margin: 120px auto 50px auto;
            background-color: white;
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 5px 30px var(--shadow-color);
            border-top: 5px solid var(--secondary-color);
        }

        .header_reclamaciones {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 40px;
            padding-bottom: 25px;
            border-bottom: 2px solid var(--border-color);
        }

        .header-left h1 {
            color: var(--primary-color);
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
        }

        .header-left h1:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
            margin-top: 10px;
        }

        .header-right {
            text-align: right;
            max-width: 450px;
        }

        .header-right h2 {
            color: var(--secondary-color);
            font-size: 26px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .header-right p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        .instructions {
            background-color: var(--light-gray);
            padding: 25px;
            border-radius: 8px;
            margin-bottom: 35px;
            border-left: 4px solid var(--tertiary-color);
        }

        .instructions h3 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-size: 20px;
            font-weight: 600;
        }

        .instructions ul {
            padding-left: 20px;
            color: #444;
            font-size: 15px;
        }

        .instructions li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 10px;
        }

        .instructions li::before {
            content: "•";
            color: var(--tertiary-color);
            font-weight: bold;
            display: inline-block;
            width: 1em;
            margin-left: -1em;
            font-size: 18px;
        }

        .form-group {
            margin-bottom: 30px;
        }

        .form-row {
            display: flex;
            gap: 30px;
            margin-bottom: 30px;
        }

        .form-column {
            flex: 1;
        }

        label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: var(--primary-color);
            font-size: 16px;
        }

        .required::after {
            content: " *";
            color: var(--error-color);
            font-size: 18px;
        }

        input[type="text"],
        input[type="email"],
        textarea {
            width: 100%;
            padding: 14px;
            border: 2px solid var(--border-color);
            border-radius: 6px;
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: 'Roboto', sans-serif;
            background-color: #f8f9fa;
        }

        input[type="text"]:focus,
        input[type="email"]:focus,
        textarea:focus {
            border-color: var(--tertiary-color);
            outline: none;
            box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
            background-color: white;
        }

        input[type="text"]:hover,
        input[type="email"]:hover,
        textarea:hover {
            border-color: #bdc3c7;
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        .radio-group {
            display: flex;
            gap: 30px;
            margin-top: 10px;
        }

        .radio-option {
            display: flex;
            align-items: center;
            cursor: pointer;
            padding: 10px 0;
        }

        .radio-option input[type="radio"] {
            margin-right: 10px;
            transform: scale(1.3);
            cursor: pointer;
        }

        .radio-option label {
            margin-bottom: 0;
            cursor: pointer;
        }

        .char-counter {
            font-size: 14px;
            color: #777;
            text-align: right;
            margin-top: 8px;
            font-style: italic;
        }

        .submit-btn {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 16px 32px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
        }

        .submit-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
            box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
        }

        .submit-btn:active {
            transform: translateY(1px);
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }

        .alert {
            padding: 20px;
            border-radius: 6px;
            margin-bottom: 30px;
            font-size: 16px;
            font-weight: 500;
        }

        .alert-success {
            background-color: #d4edda;
            color: var(--success-color);
            border: 1px solid #c3e6cb;
        }

        .alert-danger {
            background-color: #f8d7da;
            color: var(--error-color);
            border: 1px solid #f5c6cb;
        }

        /* Estilos para el modal de éxito */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .modal.show {
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
        }

        .modal-content {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            max-width: 500px;
            width: 80%;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            text-align: center;
            transform: scale(0.8);
            transition: transform 0.3s ease;
        }

        .modal.show .modal-content {
            transform: scale(1);
        }

        .modal-header {
            margin-bottom: 20px;
        }

        .modal-title {
            color: var(--success-color);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .modal-body {
            margin-bottom: 30px;
            font-size: 16px;
            color: #555;
        }

        .modal-success-icon {
            margin-bottom: 20px;
            font-size: 60px;
            color: var(--success-color);
            display: flex;
            justify-content: center;
        }

        .modal-success-icon i {
            background-color: rgba(39, 174, 96, 0.1);
            border-radius: 50%;
            padding: 20px;
        }

        .modal-btn {
            background-color: var(--tertiary-color);
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 6px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .modal-btn:hover {
            background-color: #2980b9;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            color: #999;
            cursor: pointer;
            transition: color 0.3s ease;
            background: none;
            border: none;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        /* Efectos adicionales para mejorar la interactividad */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        .submit-btn:focus {
            animation: pulse 1s infinite;
        }

        /* Mejoras responsivas */
        @media (max-width: 768px) {
            .container_reclamaciones {
                padding: 25px;
                margin: 100px 15px 30px 15px;
            }
            
            .form-row {
                flex-direction: column;
                gap: 20px;
            }
            
            .header_reclamaciones {
                flex-direction: column;
                text-align: center;
            }
            
            .header-left h1 {
                font-size: 30px;
            }
            
            .header-left h1:after {
                margin: 10px auto 0;
            }
            
            .header-right {
                text-align: center;
                margin-top: 20px;
            }
            
            .radio-group {
                flex-direction: column;
                gap: 10px;
            }
            
            .submit-btn {
                width: 100%;
            }
            
            .modal-content {
                width: 90%;
                padding: 30px 20px;
            }
        }