 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

 * {
     font-family: 'Poppins', sans-serif;
 }


 .personal-info-section {
     max-width: 1200px;
     margin: 100px auto;
     padding: 20px;
 }
@media (max-width:991px){
    .personal-info-section{
        margin: 100px auto 30px;
    }
}
 .section-header {
     text-align: center;
     margin-bottom: 50px;
 }
@media (max-width:767px){
    .section-header{
        margin-bottom: 30px;
    }
}
 .section-header .subtitle {
     color: #7A5C43;
     font-size: 18px;
     font-weight: 500;
     margin-bottom: 10px;
     display: block;
 }

 .section-header .title {
     color: #232323;
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .section-header .description {
     color: #666;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
 }

 .info-container {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-top: 40px;
 }

 .info-card {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
 }
}
 
 .info-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
 }

 .info-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 5px;
     background: linear-gradient(90deg, #7A5C43, #9B7B5B);
 }
 .info-card p{
    margin-bottom: 5px;
 }
 .info-header {
     padding: 20px;
     background: linear-gradient(45deg, rgba(122, 92, 67, 0.1), rgba(155, 123, 91, 0.1));
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
 }

 .info-title {
     font-size: 20px;
     color: #232323;
     /* margin-bottom: 10px; */
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .info-title i {
     color: #7A5C43;
 }

 .info-content {
     padding: 20px;
 }

 .info-list {
     list-style: none;
 }

 .info-item {
     margin-bottom: 15px;
     padding-bottom: 15px;
     border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     display: flex;
     align-items: flex-start;
     gap: 15px;
 }

 .info-item:last-child {
     margin-bottom: 0;
     padding-bottom: 0;
     border-bottom: none;
 }

 .info-label {
     color: #666;
     font-size: 14px;
     min-width: 120px;
 }

 .info-value {
     color: #232323;
     font-weight: 500;
     flex: 1;
 }

 .info-actions {
     padding: 20px;
     background: #f9f9f9;
     display: flex;
     justify-content: flex-end;
     gap: 10px;
 }

 .action-btn {
     padding: 8px 20px;
     border: none;
     border-radius: 5px;
     cursor: pointer;
     font-weight: 500;
     transition: all 0.3s ease;
 }

 .edit-btn {
     background: #7A5C43;
     color: #fff;
 }

 .edit-btn:hover {
     background: #614936;
 }

 /* Modal Styles */
 .modal {
     display: none;
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.5);
     z-index: 1000;
     justify-content: center;
     align-items: center;
 }

 .modal.active {
     display: flex;
 }

 .modal-content {
     background: #fff;
     padding: 30px;
     border-radius: 15px;
     width: 90%;
     max-width: 500px;
     position: relative;
     transform: translateY(-20px);
     opacity: 0;
     transition: all 0.3s ease;
 }

 .modal.active .modal-content {
     transform: translateY(0);
     opacity: 1;
 }

 .modal-header {
     margin-bottom: 20px;
 }

 .modal-title {
     font-size: 24px;
     color: #232323;
     margin-bottom: 10px;
 }

 .close-modal {
     position: absolute;
     top: 20px;
     right: 20px;
     font-size: 24px;
     cursor: pointer;
     color: #666;
     transition: color 0.3s ease;
 }

 .close-modal:hover {
     color: #232323;
 }

 .form-group {
     margin-bottom: 20px;
 }

 .form-label {
     display: block;
     margin-bottom: 8px;
     color: #232323;
     font-weight: 500;
 }

 .form-input {
     width: 100%;
     padding: 10px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 16px;
     transition: border-color 0.3s ease;
 }

 .form-input:focus {
     outline: none;
     border-color: #7A5C43;
 }

 .modal-actions {
     display: flex;
     justify-content: flex-end;
     gap: 10px;
     margin-top: 30px;
 }

 .save-btn {
     background: #7A5C43;
     color: #fff;
 }

 .save-btn:hover {
     background: #614936;
 }

 .cancel-btn {
     background: #f8f8f8;
     color: #666;
     border: 1px solid #ddd;
 }

 .cancel-btn:hover {
     background: #eee;
 }

 @media (max-width: 768px) {
     .section-header .title {
         font-size: 28px;
     }

     .info-container {
         grid-template-columns: 1fr;
     }

     .info-item {
         flex-direction: column;
         gap: 5px;
     }

     .info-label {
         min-width: auto;
     }

     .modal-content {
         width: 95%;
         padding: 20px;
     }
 }