.resume-section {
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 2rem 2rem 2rem;
    background: #fff;
}

.resume-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.resume-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    background: linear-gradient(90deg, #40C0FF, #7F7FFF 80%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.resume-embed {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(64, 192, 255, 0.15);
    background: #fff;
}

.resume-embed iframe {
    display: block;
    border: none;
    background: #fff;
    width: 100%;
    height: 800px;
    margin: 0;
    padding: 0;
}

.resume-download {
    margin-top: 1rem;
}

.download-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(90deg, #40C0FF, #7F7FFF 80%);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(64,192,255,0.12);
    transition: all 0.2s ease;
    letter-spacing: 0.01em;
}

.download-btn:hover {
    background: linear-gradient(90deg, #7F7FFF 0%, #40C0FF 100%);
    color: #fff;
    box-shadow: 0 4px 16px rgba(64,192,255,0.18);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .resume-section {
        padding: 5rem 1rem 1rem 1rem;
    }
    
    .resume-title {
        font-size: 2rem;
    }
    
    .resume-embed iframe {
        height: 600px;
    }
    
    .download-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
} 