body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
}

.information-reclamaciones {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 0;
    color: #000000;
}

.information-reclamaciones h1 {
    font-size: 4.2em;
    color: #3E9984;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 30px;
}

.information-reclamaciones .intro-paragraph {
    line-height: 1.6;
    font-weight: 600;
    margin-bottom: 50px;
    padding: 0 20px;
}

.form-container {
    background-color: #E1E8E7;
    border-radius: 8px;
    padding: 30px;
    margin: 30px auto;
}

.form-datos-consumidor {
    width: 1060px;
    height: 422px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: #337a6b 1px solid;
    justify-content: space-between;
}

.form-mas-detalles {
    width: 1060px;
    height: 560px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    border: #337a6b 1px solid;
    justify-content: space-between;
    
}

.form-container h2 {
    color: #20453D;
    font-size: 1.8em;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: left;
    padding-left: 20px;
}

.form-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
    padding: 0 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    padding: 0 20px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.9em;
    color: #000000;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #B0BEC5;
    border-radius: 4px;
    font-size: 1em;
    color: #424242;
    background-color: #ffffff;
    box-sizing: border-box;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

input[type="date"] {
    position: relative;
    padding-right: 40px;
    background: #ffffff url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24"><path fill="%23616161" d="M19 4h-3V2h-2v2h-4V2H8v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11zM19 7H5V6h14v1z"/></svg>') no-repeat right 10px center;
    background-size: 24px;
    appearance: none;
    -webkit-appearance: none;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
    padding: 0 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-right: 10px;
    min-width: 18px;
    min-height: 18px;
    border: 1px solid #B0BEC5;
    background-color: #ffffff;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 1.2em;
    color: #000000;
    font-weight: 400;
    line-height: 1.5;
}

.submit-button {
    background-color: #195043;
    color: #ffffff;
    padding: 12px 100px;
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    cursor: pointer;
    margin-top: 0px;
    display: block;
    margin-left: auto;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #000000;
}

@media (max-width: 1100px) {
    .form-container {
        width: 90%;
        max-width: 1060px;
    }
}

@media (max-width: 768px) {
    .information-reclamaciones h1 {
        font-size: 2.8em;
    }

    .information-reclamaciones .intro-paragraph {
        font-size: 0.9em;
        padding: 0 10px;
    }

    .form-container {
        padding: 20px;
        margin: 20px auto;
        height: auto;
        width: 95%;
    }

    .form-container h2 {
        font-size: 1.5em;
        padding-left: 0;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    .form-group.full-width {
        padding: 0 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.9em;
        padding: 8px 12px;
    }

    .form-checkbox {
        flex-direction: row;
        align-items: center;
        padding: 0 10px;
    }

    .form-checkbox label {
        font-size: 0.85em;
    }

    .submit-button {
        padding: 10px 20px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .information-reclamaciones h1 {
        font-size: 2em;
    }

    .form-container h2 {
        font-size: 1.3em;
    }
}