.projects-main {
    max-width: 900px;
    margin: 40px auto 0 auto;
    padding: 32px 32px 40px 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.07), 0 1.5px 6px 0 rgba(0,0,0,0.03);
    border: 1px solid #ececec;
    font-family: 'Segoe UI', Arial, sans-serif;
}
.resume-section {
    margin-bottom: 2.5rem;
}
.resume-link {
    color: #1976d2;
    text-decoration: underline;
    font-weight: 500;
}
.resume-link:hover {
    color: #4fc3f7;
}
.resume-highlights {
    margin: 1rem 0 0 1.2rem;
    padding: 0;
    list-style: disc inside;
    color: #333;
}
.projects-section {
    margin-bottom: 2.5rem;
}
.project-tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.2rem;
}
.project-tile {
    flex: 1 1 220px;
    min-width: 220px;
    max-width: 280px;
    background: #f3f4f6;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.07);
    border: 1px solid #e3eaf2;
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: #222;
    transition: box-shadow 0.18s, border 0.18s, background 0.18s;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.project-tile:hover {
    background: #e3eaf2;
    border: 1px solid #1976d2;
    box-shadow: 0 4px 16px rgba(25, 118, 210, 0.13);
}
.project-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1976d2;
}
.project-desc {
    font-size: 1rem;
    color: #444;
}
.contact-section {
    margin-bottom: 1.5rem;
}
.contact-info {
    margin-top: 0.7rem;
    font-size: 1.08rem;
    color: #222;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.contact-info a {
    color: #1976d2;
    text-decoration: underline;
}
.contact-info a:hover {
    color: #4fc3f7;
}
.card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(25, 118, 210, 0.07), 0 1.5px 6px 0 rgba(0,0,0,0.03);
    border: 1px solid #e3eaf2;
    padding: 2rem 2.5rem 1.5rem 2.5rem;
    margin-bottom: 2.5rem;
    transition: box-shadow 0.18s, border 0.18s;
}
.card:not(:last-child) {
    margin-bottom: 2.5rem;
}
.card h1, .card h2 {
    margin-top: 0;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #1976d2;
    letter-spacing: 0.01em;
}
.card ul {
    margin-bottom: 0;
}

/* Section-specific tweaks */
.resume-section.card {
    border-left: 5px solid #1976d2;
}
.projects-section.card {
    border-left: 5px solid #388e3c;
}
.contact-section.card {
    border-left: 5px solid #fbc02d;
}

/* Responsive adjustments for cards */
@media (max-width: 700px) {
    .projects-main {
        padding: 10px 2vw 20px 2vw;
    }
    .project-tiles {
        flex-direction: column;
        gap: 1rem;
    }
    .card {
        padding: 1.2rem 1vw 1.2rem 3vw;
    }
}
