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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}

header {
    background: #333;
    color: #fff;
    padding: 1rem 0;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
}

section {
    padding: 3rem 1rem;
    text-align: center;
    background: #fff;
    margin-bottom: 1rem;
}

#home {
    background: url('https://source.unsplash.com/1600x900/?cloud,technology') no-repeat center center/cover;
    height: 100vh;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

#home .intro {
    background: rgba(0, 0, 0, 0.7);
    padding: 2rem;
}

#home h1 {
    font-size: 3rem;
}

.cta-btn {
    display: inline-block;
    background: #e8491d;
    color: #fff;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    margin-top: 1rem;
    border-radius: 5px;
}

#about .about-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

#about img {
    border-radius: 50%;
    margin-right: 2rem;
}

#skills .skills-list {
    display: flex;
    justify-content: space-around;
}

.skills-list .skill ul {
    list-style: none;
    text-align: left;
}

#projects .project {
    background: #eee;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    text-align: left;
}

#experience .experience-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

#experience .experience-item {
    background: #eee;
    padding: 1.5rem;
    border-radius: 8px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 50%;
    margin: 0 auto;
}

form label {
    margin-top: 1rem;
    font-size: 1.1rem;
    color: #333;
}

form input, form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

form button {
    background: #333;
    color: #fff;
    padding: 0.7rem 1.5rem;
    margin-top: 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

form button:hover {
    background: #e8491d;
}

footer {
    background: #333;
    color: #fff;
    padding: 1.5rem 0;
    text-align: center;
}

footer p {
    margin: 0;
}
