@charset "utf-8";
 

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    width: 1000px;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
}

.container {
    max-width: 1200px;
    margin-top: auto;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 0;
    padding: 0 20px;
    width: 1000px;
}

.header {
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    width: 1000px;
    height: 66px;
    padding-top: auto;
    padding-left: auto;
    padding-right: auto;
    margin-bottom: auto;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: auto;
}

.nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    margin-top: -19px;
}

.logo h3 {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.5rem;
    padding-left: 28px;


    
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
    width: 1000px;
    padding-left: 497px;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #6366f1;
}

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}


.profile-image {
    width: 100%;
    max-width: 400px;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 rgba(0, 0, 0, 0.2);
}
.footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
    text-align: center;
}
