.qms-profile-container {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(38, 54, 55, 0.05);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
    font-family: "Quattrocento Sans", sans-serif;
    color: #1A2425;
}

.qms-form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #E2E1CE;
}

.qms-form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 24px;
    padding-bottom: 0;
}

.qms-section-title {
    font-family: "Quattrocento", serif;
    color: #263637;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 8px;
}

.qms-section-desc {
    color: #54595F;
    font-size: 14px;
    margin-bottom: 24px;
}

.qms-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -12px 20px;
}

.qms-form-group {
    padding: 0 12px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.qms-col-full {
    width: 100%;
}

.qms-col-half {
    width: 50%;
}

@media (max-width: 768px) {
    .qms-col-half {
        width: 100%;
        margin-bottom: 20px;
    }
    .qms-form-row {
        margin-bottom: 0;
    }
    .qms-form-group:last-child {
        margin-bottom: 20px;
    }
}

.qms-form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
    color: #263637;
}

.qms-required {
    color: #d32f2f;
}

.qms-form-group input[type="text"],
.qms-form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #CAC8A9;
    border-radius: 4px;
    background-color: #fafafa;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.qms-form-group input[type="text"]:focus,
.qms-form-group textarea:focus {
    outline: none;
    border-color: #263637;
    background-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(38, 54, 55, 0.1);
}

.qms-field-desc {
    font-size: 13px;
    color: #7A7A7A;
    margin-top: 6px;
    margin-bottom: 0;
}

.qms-btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.1s ease;
    border: none;
    font-family: "Quattrocento Sans", sans-serif;
}

.qms-btn-primary {
    background-color: #263637;
    color: #ffffff;
}

.qms-btn-primary:hover {
    background-color: #1A2425;
    color: #ffffff;
}

.qms-btn-primary:active {
    transform: translateY(1px);
}

.qms-alert {
    padding: 16px 20px;
    border-radius: 4px;
    margin-bottom: 24px;
    font-weight: 500;
}

.qms-alert-success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border-left: 4px solid #2e7d32;
}

.qms-alert-warning {
    background-color: #fff8e1;
    color: #f57f17;
    border-left: 4px solid #f57f17;
}