body {
    background-color: #f5f5f5;
    background-size: auto;
    background-repeat: no-repeat;
    background-position: relative;
    background-attachment: fixed;
    width: 95%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 20px;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

#colspan {
    background-color: white;
    background-position: center center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 300px;
    min-height: 850px;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    flex-shrink: 0;
}

.profile-img {
    margin-bottom: 20px;
}

.profile-placeholder {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: bold;
    color: white;
    margin: 0 auto 20px;
    border: 4px solid white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    font-size: 18px;
    margin: 10px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #2d3748;
    font-weight: 600;
}

h1 {
    font-size: 14px;
    margin: 8px 0;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #4a5568;
    font-weight: normal;
}

h3 {
    color: #2d3748;
    font-size: 16px;
    margin: 20px 0 10px 0;
    font-weight: 600;
    border-bottom: 2px solid #3b82f6;
    padding-bottom: 5px;
}

.container-padding {
    flex: 1;
    min-width: 400px;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
}

.padding-bottom {
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 30px;
    margin-top: 20px;
}

.padding h2 {
    color: #2d3748;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: left;
    border-bottom: 3px solid #3b82f6;
    padding-bottom: 10px;
}

.padding p {
    text-align: justify;
    color: #4a5568;
    margin-bottom: 15px;
}

.load, .load2, .load3, .load4 {
    background-color: #e2e8f0;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 25px;
    position: relative;
}

.progress, .progress2, .progress3, .progress4 {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    border-radius: 10px;
    height: 100%;
    color: white;
    text-align: center;
    line-height: 25px;
    font-size: 12px;
    font-weight: bold;
    transition: width 1s ease-out;
}

.content1, .content2, .content3 {
    margin-bottom: 25px;
    padding: 20px;
    background-color: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #3b82f6;
}

.content3 h3 {
    color: #2d3748;
    margin-bottom: 10px;
    border: none;
    padding: 0;
}

.content3 p {
    color: #4a5568;
    margin: 5px 0;
}

.content3 ul {
    margin: 10px 0;
    padding-left: 20px;
}

.content3 li {
    color: #4a5568;
    margin: 5px 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.skill-category {
    background-color: #f8fafc;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #8b5cf6;
}

.skill-category h4 {
    color: #2d3748;
    margin-bottom: 10px;
    font-size: 16px;
}

.skill-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-category li {
    color: #4a5568;
    padding: 3px 0;
    font-size: 14px;
}

.skill-category li:before {
    content: "▸ ";
    color: #8b5cf6;
    font-weight: bold;
}

hr {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #cbd5e0, transparent);
    margin: 20px 0;
}

.resume-footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.resume-footer p {
    color: #4a5568;
    margin: 0;
}

.resume-footer a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
}

.resume-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }
    
    .container {
        flex-direction: column;
    }
    
    #colspan {
        max-width: 100%;
        min-height: auto;
    }
    
    .container-padding {
        min-width: auto;
        padding: 20px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    body {
        background-color: white;
        padding: 0;
    }
    
    .container {
        box-shadow: none;
        margin: 0;
        max-width: none;
    }
    
    #colspan, .container-padding, .padding-bottom {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
    
    .resume-footer {
        page-break-inside: avoid;
    }
}