.profile-card {
    display: flex;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin:auto;
}

.left-column {
    flex: 1;
    padding: 20px;
    background-color: #e0e0e0;
    color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-image: url('Library/PRESSAT_Luca.jpg');
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
}

.contact-info {
    text-align: center;
}

.contact-info p {
    margin: 5px 0;
    font-size: 14px;
}

.right-column {
    flex: 3;
    padding: 20px;
}

.profile-title {
    margin-top: 0;
    color: #333;
}

.profile-description {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    padding: 0 20px;
}

.profile-description p {
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.social-icon {
    font-size: 2.5rem;
    color: #0077B5;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    color: #005582;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .profile-card {
        flex-direction: column;
        max-width: 90%;
    }

    .left-column, .right-column {
        width: 100%;
    }

    .profile-description {
        padding: 0 10px;
    }
}

.app-timeline {
    margin: 40px auto;
    max-width: 800px;
}

.app-timeline h1,
.app-timeline h2,
.app-timeline h3,
.app-timeline p {
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7), 0 1px 0 #333;
}

.timeline {
    list-style: none;
    padding: 0;
    position: relative;
}
.timeline li {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
    border-left: 3px solid #007bff;
}
.timeline-content {
    background: rgba(0,0,0,0.7);
    padding: 16px 24px;
    border-radius: 8px;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.timeline li::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 18px;
    width: 16px;
    height: 16px;
    background: #007bff;
    border-radius: 50%;
    border: 3px solid #fff;
}
.timeline h4 {
    margin-top: 0;
    color: #007bff;
}
