.central_content {
    text-align: center;
}

/* Profile Header Section */
.profile-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 40px;
}

.profile-header.visible {
    animation: pulse 1s forwards;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* This makes the image a circle */
    object-fit: cover;
    border: 5px solid var(--primary-color-alt);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: 20px;
    margin-top: 40px;
}

.profile-header h2 {
    text-align: center;
    letter-spacing: 2px;
    padding: 0;
    margin: 0;
}

/* About Paragraphs Section */
.about-text {
    max-width: 800px; /* Constrains line length for readability */
    margin: 0 auto 60px auto; /* Centers the text block */
    text-align: left;
}

.about-text p {
    margin-bottom: 20px; /* Space between paragraphs */
    line-height: 1.6; /* Improves readability */
}

/* CTA Section */
.cta-section {
    padding: 40px 30px;
    margin-bottom: 40px;
    text-align: center;
}

.cta-section h3 {
    text-align: center;
    padding-top: 0;
    font-size: 28px;
}

.cta-section p {
    margin-bottom: 25px;
}

/* Replace your old ".passion-icons" styles with this updated version */
.passion-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    
    color: #1e3a56;
    flex-wrap: wrap; /* Allows icons to wrap nicely on smaller screens */
    margin-top: 30px;
    margin-bottom: 60px;
}

.passion-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 120px; /* Gives each item a consistent width */
    text-align: center;
    opacity: .9;
}

.passion-item i {
    font-size: 36px;
    margin-bottom: 10px; /* Creates space between the icon and text */
    transition: transform 0.2s ease-in-out;
}

.passion-item p {
    margin: 0;
    font-weight: 500;
    font-size: 1rem;
    
}
