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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #d49393;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    background: url('header-bg.jpg') no-repeat center center/cover;
    color: #fff;
    text-align: center;
    padding: 100px 0;
    position: relative;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

nav ul li a:hover {
    color: #853122;
}

.header-content {
    position: relative;
    z-index: 1;
    animation: slideInFromTop 1s ease-out;
}

header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

header p {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    width: 150px;
    background-color: #ff6347;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #35aae5;
}

section {
    padding: 80px 0;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    animation: fadeIn 1s ease-in-out;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

.about-content img {
    border-radius: 50%;
    margin-right: 20px;
    width: 150px;
    height: 150px;
    animation: fadeIn 2s ease-in-out;
}

.about-content p {
    max-width: 600px;
}

.expertise-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.skill {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}

.skill h3 {
    margin-bottom: 10px;
}

.projects-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project {
    background: #fff;
    border: 1px solid #ccc;
    padding: 20px;
    width: 300px;
    border-radius: 10px;
    animation: fadeInUp 1s ease-out;
}

.project img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

.project h3 {
    margin-bottom: 10px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form label {
    margin: 10px 0 5px 0;
}

form input, form textarea {
    width: 600px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    width: 30%;
}

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

@keyframes slideInFromTop {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 600px) {
    nav ul li {
        display: block;
        margin: 10px 0;
    }

    .about-content {
        flex-direction: column;
        align-items: center;
    }

    .about-content img {
        margin-bottom: 20px;
        margin-right: 0;
    }
}

