section.feedback {
    margin: 30px 0;
}

section.feedback .feedback-top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 30px;
}

section.feedback .feedback-content {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 4%;
}

section.feedback .feedback-content .feedback-image {
    width: 48%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

section.feedback .feedback-content .feedback-image img {
    width: 100%;
    height: auto;
    display: block;
}

section.feedback .feedback-content ul.feedback-txt {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.feedback .feedback-content ul.feedback-txt li {
    width: 100%;
    margin: 20px 0;
    line-height: 1.6;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

section.feedback .feedback-content ul.feedback-txt li:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
}


section.feedback .feedback-top h1 {
    margin: 20px 0;
    text-align: center;
    font-weight: 500;
}

section.feedback .feedback-top p {
    text-align: center;
}

section.feedback .feedback-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

section.feedback .feedback-form h1 {
    text-align: center;
    margin: 20px 0;
    width: 100%;
    font-weight:500;
}

section.feedback .feedback-form form {
    width: 100%;
}

section.feedback .feedback-form form .form-items {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

section.feedback .feedback-form form .form-items dl {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
    width: 48%;
}

section.feedback .feedback-form form .form-items dl dt {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 15px;
}

section.feedback .feedback-form form .form-items dl dt i {
    margin-left: 3px;
    margin-top: 5px;
    color: #f00;
}

section.feedback .feedback-form form .form-items dl:last-child {
    width: 100%;
}

section.feedback .feedback-form form .form-button {
    margin: 20px 0;
    text-align: center;
}

section.feedback .feedback-form form .form-button button {
    padding: 15px 30px;
    border-radius: 3px;
    font-size: 16px;
    background-color: #083090;
    color: #fff;
}

/* Welfare Section Styles */
section.feedback .welfare-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #fff;
    padding: 60px 20px;
    margin: 40px 0;
    border-radius: 10px;
}

section.feedback .welfare-section .welfare-header {
    text-align: center;
    margin-bottom: 50px;
}

section.feedback .welfare-section .welfare-header h1 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #fff;
}

section.feedback .welfare-section .welfare-header h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

section.feedback .welfare-section .welfare-header p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    color: #e5e7eb;
}

section.feedback .welfare-section .welfare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

section.feedback .welfare-section .welfare-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

section.feedback .welfare-section .welfare-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

section.feedback .welfare-section .welfare-card .welfare-icon {
    margin-bottom: 20px;
}

section.feedback .welfare-section .welfare-card .welfare-icon i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 15px;
}

section.feedback .welfare-section .welfare-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

section.feedback .welfare-section .welfare-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #e5e7eb;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    section.feedback .feedback-content {
        flex-direction: column;
        padding: 40px 15px;
        gap: 30px;
    }
    
    section.feedback .feedback-content .feedback-image {
        width: 100%;
    }
    
    section.feedback .feedback-content ul.feedback-txt {
        width: 100%;
    }
    
    section.feedback .feedback-content ul.feedback-txt li {
        padding: 15px 20px;
        margin: 15px 0;
    }
    
    section.feedback .welfare-section {
        padding: 40px 15px;
    }
    
    section.feedback .welfare-section .welfare-header h1 {
        font-size: 20px;
    }
    
    section.feedback .welfare-section .welfare-header h2 {
        font-size: 28px;
    }
    
    section.feedback .welfare-section .welfare-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    section.feedback .welfare-section .welfare-card {
        padding: 25px 20px;
    }
    
    section.feedback .welfare-section .welfare-card .welfare-icon i {
        font-size: 32px;
    }
    
    section.feedback .welfare-section .welfare-card h3 {
        font-size: 18px;
    }
}
