* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #2c2c2c;
    color: white;
    padding: 15px 40px;
}

.logo p {
    font-size: 12px;
    color: #ccc;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
    background: #555;
    color: white;
}

.hero-text {
    width: 50%;
}

.hero-text h1 {
    font-size: 38px;
}

.hero-text h3 {
    margin: 10px 0;
}

.hero-text p {
    margin-bottom: 20px;
}

.hero-image img {
    width: 300px;
    border-radius: 5;
}
.btn {
    background: #0d6efd;
    color: white;
    padding: 10px 18px;
    text-decoration: none;
    display: inline-block;
}

section {
    padding: 60px 40px;
}

.about,
.contact {
    background: #f5f5f5;
}

.skills ul {
    list-style: square;
    margin-left: 20px;
}

.skills li {
    margin-bottom: 8px;
}

.project-card {
    background: white;
    padding: 20px;
    margin-top: 15px;
    border-radius: 4px;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    margin-bottom: 10px;
}

.contact-list a {
    color: #0d6efd;
    text-decoration: none;
}
.footer {
    background: #2c2c2c;
    color: white;
    text-align: center;
    padding: 10px;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-image img {
        margin-top: 2px;
        width: 20px;
    }

    .nav-links {
        display: none;
    }
}