.contact-info {
    padding: 15px;
    background-color: #f4f4f4;  /* Light grey background */
    border-radius: 8px;         /* Rounded corners */
    max-width: 500px;           /* Maximum width */
    margin: 0 auto;             /* Center the container */
}

.contact-info p {
    line-height: 1.5rem;
}

.about-container {
    max-width: 80%;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    border: 2px solid #ddd;
    border-radius: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.about-container h1 {
    text-align: center;
    margin-bottom: 1rem;
    font-family: "Helvetica", sans-serif;
}

.about-content {
    display: flex;
    align-items: center;
    column-gap: 2rem;
    row-gap: 0;
}

#about {
    margin-top: 30px;  /* Adjust this value to increase/decrease space */
}

.profile-image {
    width: 200px;  /* Adjust size as needed */
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;  /* Prevents image from shrinking */
}

.about-text {
    font-family: "Helvetica", sans-serif;
    flex: 1;  /* Takes up remaining space */
    padding-bottom: 1rem;
    text-align: justify;
}

/* Make it responsive for mobile screens */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
} 

/* Add this media query for mobile devices */
@media screen and (max-width: 768px) {  /* 768px is typical tablet/phone breakpoint */
    .about-content {
        flex-direction: column;  /* Stack items vertically */
        text-align: center;      /* Center the text */
    }
} 

/* Highlights Section */
.highlights-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.highlights-row {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 1rem;  /* Space for scrollbar */
    scroll-behavior: smooth;  /* Smooth scrolling */
    -webkit-overflow-scrolling: touch;  /* Smooth scrolling on iOS */
}

/* Hide scrollbar but keep functionality */
.highlights-row::-webkit-scrollbar {
    height: 8px;
}

.highlights-row::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.highlights-row::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.highlight-item {
    flex: 0 0 300px;  /* Fixed width, don't grow or shrink */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.highlight-image {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.highlight-description {
    text-align: justify;
    margin: 0;
    font-family: "Helvetica", sans-serif;
    line-height: 1.2rem;
}

.highlight-link {
    color: #0066cc;
    text-decoration: none;
    font-weight: 500;
}

.highlight-link:hover {
    text-decoration: underline;
}

/* Make it responsive */
@media (max-width: 768px) {
    .highlight-item {
        flex: 0 0 250px;  /* Smaller on mobile */
    }
    
    .highlight-image {
        width: 250px;
        height: 250px;
    }
} 

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: space-evenly;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 100%;
    height: 100%;
}

/* Update the media query to handle social icons on mobile */
@media screen and (max-width: 768px) {
    .social-links {
        justify-content: center;
    }
} 