* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Utility Classes */
.strong-text {
    color: #1a1a1a;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.strong-badge {
    color: #1a1a1a;
    font-weight: 800;
    background-color: #e8f4f8;
    padding: 0.4rem;
    display: inline-block;
    margin-bottom: 0.4rem;
    font-size: 0.85rem;
}

.uppercase-heading {
    text-transform: uppercase;
    font-weight: 900;
}

.year-badge {
    color: #ffffff;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    z-index: -1;
}

body {
    font-family: 'Inter', 'Arial', sans-serif;
    line-height: 1.4;
    color: #1a1a1a;
    background-color: #f5f7fa;
    padding: 1.5rem;
    margin: 0 auto;
}

.site {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-template-rows: auto 1fr;
    gap: 1.5rem;
    background-color: #ffffff;
    padding: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    
    .header {
        grid-column: span 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem;
        background: #eeeeee;
        margin-bottom: 1.5rem;
        
        h1 {
            font-size: 2.2rem;
            font-weight: 900;
            margin-top: 0.25rem;
            margin-bottom: 0.25rem;
            text-shadow: 2px 2px 0px #fae5c3;
        }
        
        .contact-info {
            font-size: 0.9rem;
            line-height: 1.3;
            font-weight: 600;
            text-shadow: 1px 1px 0px #fae5c3;
        }
    }
    
    .sidebar {
        grid-row-start: 2;
        background-color: #e8f4f8;
        padding: 1.5rem;
        position: sticky;
        top: 1.5rem;
        height: fit-content;
        align-self: start;
        
        ul {
            list-style: none;
            
            li {
                margin-bottom: 0.75rem;
                
                a {
                    color: #1a1a1a;
                    text-decoration: none;
                    font-weight: 700;
                    padding: 0.75rem;
                    display: block;
                    background-color: #ffd93d;
                    transition: all 0.2s ease;
                    text-transform: uppercase;
                    font-size: 0.8rem;
                    letter-spacing: 0.5px;
                    
                    &:hover {
                        background-color: #ff6b6b;
                        color: #ffffff;
                        transform: translate(-2px, -2px);
                    }
                }
            }
        }
    }
    
    .main {
        grid-row-start: 2;
        
        .section {
            margin-bottom: 2rem;
            
            h2 {
                font-size: 1.5rem;
                color: #1a1a1a;
                margin-bottom: 1rem;
                padding: 0.75rem;
                background-color: #ffd93d;
                letter-spacing: 1px;
            }
        }
        
        .summary {
            font-size: 1rem;
            line-height: 1.5;
            color: #1a1a1a;
            background-color: #e8f4f8;
            padding: 1.5rem;
            font-weight: 500;
        }
        
        .skills-content {
            p {
                margin-bottom: 0.75rem;
                font-size: 0.9rem;
                padding: 1rem;
                background-color: #f0f8f0;
                margin-bottom: 0.75rem;
            }
        }
        
        .experience-item {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background-color: #fff0f5;
            
            .experience-header {
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                margin-bottom: 0.75rem;
                
                .company {
                    font-size: 1.1rem;
                    color: #1a1a1a;
                }
                
                .job-title {
                    font-size: 1rem;
                    font-weight: 700;
                    color: #ff6b6b;
                    margin-top: 0.25rem;
                }
                
                .location {
                    font-size: 0.9rem;
                    color: #4ecdc4;
                    font-weight: 700;
                }
                
                .date {
                    font-size: 0.9rem;
                    color: #1a1a1a;
                    white-space: nowrap;
                    background-color: #ffd93d;
                }
            }
            
            .experience-details {
                margin-top: 1rem;
                
                .bullet-point {
                    margin-left: 0;
                    margin-bottom: 0.75rem;
                    
                    ul {
                        margin: 0.75rem 0;
                        padding-left: 1.5rem;
                        
                        li {
                            margin-bottom: 0.4rem;
                            font-size: 0.85rem;
                            line-height: 1.4;
                            font-weight: 500;
                        }
                    }
                }
            }
        }
        
        .certification-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 1rem;
            background-color: #f0f8f0;
            
            .cert-name {
                color: #1a1a1a;
                font-size: 0.9rem;
            }
            
            .cert-provider {
                color: #4ecdc4;
                font-size: 0.8rem;
                margin-top: 0.2rem;
                font-weight: 600;
            }
            
            .cert-year {
                color: #ffffff;
                background-color: #ff6b6b;
            }
        }
        
        .achievement {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background-color: #e8f4f8;
            position: relative;
            
            &::before {
                content: '';
                position: absolute;
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
                background: linear-gradient(45deg, #ff6b6b, #4ecdc4, #ffd93d);
                z-index: -1;
            }
            
            .achievement-header {
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                margin-bottom: 0.75rem;
                
                h4 {
                    font-size: 1rem;
                    color: #1a1a1a;
                    margin: 0;
                }
                
                .achievement-year {
                    color: #ffffff;
                    background-color: #4ecdc4;
                }
            }
            
            p {
                font-size: 0.85rem;
                color: #1a1a1a;
                margin-bottom: 0.5rem;
                font-weight: 500;
                
                &:last-child {
                    margin-bottom: 0;
                }
            }
            
            ul {
                margin: 0.75rem 0;
                padding-left: 1.5rem;
                
                li {
                    margin-bottom: 0.4rem;
                    font-size: 0.85rem;
                    line-height: 1.4;
                    font-weight: 500;
                }
            }
        }
        
        .education {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            background-color: #f0f8f0;
            position: relative;
            
            &::before {
                content: '';
                position: absolute;
                top: -3px;
                left: -3px;
                right: -3px;
                bottom: -3px;
                background: linear-gradient(45deg, #4ecdc4, #ffd93d, #ff6b6b);
                z-index: -1;
            }
            
            .education-header {
                display: flex;
                justify-content: space-between;
                align-items: baseline;
                margin-bottom: 0.75rem;
                
                h4 {
                    font-size: 1rem;
                    color: #1a1a1a;
                    margin: 0;
                }
                
                .education-year {
                    color: #ffffff;
                    background-color: #ff6b6b;
                }
            }
            
            p {
                font-size: 0.85rem;
                color: #1a1a1a;
                margin-bottom: 0.5rem;
                font-weight: 500;
                
                &:last-child {
                    margin-bottom: 0;
                }
            }
            
            ul {
                margin: 0.75rem 0;
                padding-left: 1.5rem;
                
                li {
                    margin-bottom: 0.4rem;
                    font-size: 0.85rem;
                    line-height: 1.4;
                    font-weight: 500;
                }
            }
        }
    }
}

.avatar {
    width: 100px;
    height: 100px;
    border: 4px solid #000000;
    object-fit: cover;
    filter: contrast(1.2) saturate(1.3);
}

.link {
}

/* Print styles */
@media print {
    body {
        background-color: white;
        padding: 0;
    }
    
    .site {
        border: 2px solid #000000;
        max-width: none;
        padding: 1rem;
    }
    
    .sidebar {
        display: none;
    }
    
    .main {
        grid-column: span 2;
    }
    
    .header {
        background: #ffd93d !important;
        color: #000000 !important;
        
        h1, .contact-info {
            color: #000000 !important;
            text-shadow: none !important;
        }
    }
}

/* Responsive design */
@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    .site {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
        
        .header {
            grid-column: span 1;
            flex-direction: column;
            text-align: center;
            gap: 1rem;
            padding: 1.5rem;
            
            h1 {
                font-size: 2rem;
            }
        }
        
        .sidebar {
            grid-row-start: 3;
            order: 2;
            padding: 1.5rem;
            
            ul li a {
                padding: 0.75rem;
                font-size: 0.8rem;
            }
        }
        
        .main {
            grid-row-start: 2;
            order: 1;
            
            .section h2 {
                font-size: 1.5rem;
                padding: 0.75rem;
            }
        }
    }
    
    .experience-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        
        .date {
            align-self: flex-end;
        }
    }
    
    .certification-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.5rem;
        
        .cert-year {
            align-self: flex-end;
        }
    }
    
    .achievement-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        
        .achievement-year {
            align-self: flex-end;
        }
    }
    
    .education-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.5rem;
        
        .education-year {
            align-self: flex-end;
        }
    }
}

/* Print styles */
@media print {
    body {
        background-color: white;
        padding: 0;
    }
    
    .site {
        box-shadow: none;
        border-radius: 0;
        max-width: none;
        padding: 1rem;
    }
    
    .sidebar {
        display: none;
    }
    
    .main {
        grid-column: span 2;
    }
    
    .header {
        border-bottom: 2px solid #3498db;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .site {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1rem;
        
        .header {
            grid-column: span 1;
            flex-direction: column;
            text-align: center;
            gap: 1rem;
            
            h1 {
                font-size: 2rem;
            }
        }
        
        .sidebar {
            grid-row-start: 3;
            order: 2;
        }
        
        .main {
            grid-row-start: 2;
            order: 1;
        }
    }
    
    .experience-header {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.25rem;
    }
}