/* Main Content Section */
 .cv-content-section {
     position: relative;
 }

 .cv-content-section .container {
     position: relative;
     z-index: 2;
 }

 /* Back Button */
 .cv-content-section .back-button {
     width: 50px;
     height: 50px;
     background-color: var(--button-color);
     color: white;
     border: none;
     border-radius: 0;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 30px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .cv-content-section .back-button:hover {
     transform: translateX(-3px);
     background-color: var(--secondary-color);
 }

 /* Profile Card */
 .cv-content-section .profile-card {
     background-color: var(--secondary-color);
     color: white;
     padding: 30px;
     margin-top: -5px;
 }

 .cv-content-section .profile-card .profile-name {
     margin-bottom: 16px;
 }

 .cv-content-section .profile-card .profile-title {
     font-weight: 400;
     margin-bottom: 5px;
     color: var(--white-color);
 }

 .cv-content-section .profile-card .profile-subtitle {
     margin-bottom: 30px;
     color: var(--white-color);
 }

 .cv-content-section .profile-card .profile-divider {
     width: 100%;
     height: 1px;
     background-color: rgba(255, 255, 255, 0.3);
     margin-top: 30px;
     margin-bottom: 20px;
 }

 .cv-content-section .profile-card .contact-info {
     display: flex;
     flex-direction: column;
 }

 .cv-content-section .contact-info .contact-item {
     display: flex;
     align-items: center;
     margin-bottom: 12px;
     color: var(--white-color);
 }

 .cv-content-section .contact-info .contact-item i {
     width: 20px;
     margin-inline-end: 12px;
     color: white;
 }

 .cv-content-section .contact-info .contact-item a {
     color: var(--white-color);
     font-size: 0.9rem;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .cv-content-section .contact-info .contact-item a:hover {
     color: white;
 }

 /* Biography Section */
 @media (min-width: 992px) {
     .cv-content-section .biography-content {
         padding-inline-start: 70px;
     }
 }

 .cv-content-section .biography-content .biography-text {
     line-height: 1.6;
     margin-bottom: 40px;
     text-align: justify;
 }

 /* Education Section */
 .cv-content-section .biography-content .education-section {
     margin-top: 40px;
 }

 .cv-content-section .education-section .education-title {

     margin-bottom: 20px;
 }

 .cv-content-section .biography-content .education-section ul {
    list-style: none;
    padding-right: 0;
    padding-left: 0;
 }

 .cv-content-section .biography-content .education-section ul li {
    margin-bottom: 20px;
    font-size: 0.9rem;
 }

 .cv-content-section .biography-content .education-section ul li:last-child {
    margin-bottom: 0;
 }

 .cv-content-section .education-section .education-item {
     margin-bottom: 15px;
 }

 .cv-content-section .education-section .education-university {

     color: var(--primary-color);
     margin-right: 8px;
 }



 /* Languages Section */
 .languages-section {
     margin-top: 30px;
 }

 .languages-title {

     margin-bottom: 10px;
 }
.biography-content .languages-title,
.biography-content .education-title {
    font-size: 1.5rem !important;
}
