* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

.nav {
    background: #2d3748;
    color: white;
    padding: 1rem 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.hero {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 50px 20px;
}

.card {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

.button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
}

.footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 30px;
    margin-top: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
}

.nav {
    background: #2d3748;
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav a {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
}

.nav a:hover {
    background: #4a5568;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.5em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.resume-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.resume-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px;
    transition: all 0.3s;
    cursor: pointer;
}

.resume-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.resume-card .icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.resume-card h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #667eea;
}

.resume-card p {
    color: #666;
    margin-bottom: 20px;
}

.resume-card ul {
    list-style: none;
    padding: 0;
}

.resume-card ul li {
    padding: 8px 0;
    color: #555;
}

.resume-card ul li:before {
    content: "✓ ";
    color: #667eea;
    font-weight: bold;
    margin-right: 8px;
}

.cta-button {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #764ba2;
}

.highlight-box {
    background: #f7fafc;
    border-left: 4px solid #667eea;
    padding: 20px 30px;
    margin: 40px 0;
}