* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.header {
    background: var(--color-bg-light);
    padding: 1rem 2rem;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
}

.nav a:hover {
    color: var(--color-primary);
}

.hero {
    text-align: center;
    padding: 5rem 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    background: var(--color-primary);
    color: #000;
    text-decoration: none;
    border-radius: 5px;
}

.section {
    padding: 4rem 2rem;
    max-width: 1000px;
    margin: auto;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: 8px;
}

.skills-list {
    margin-top: 1.5rem;
    list-style: square inside;
}

.footer {
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-light);
}
