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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 50%;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1; */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2;
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 4rem;
    color: black;
    text-align: center;
}

.hero-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    line-height: 1.1;
}

.hero-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: center;
}

.cta-button:hover {
    background: #555;
}

.section {
    padding: 5rem 0;
}

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

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
}

.experience-item {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.experience-year {
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    min-width: 100px;
}

.experience-details {
    flex: 1;
    margin-left: 2rem;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.company {
    font-weight: 600;
    color: rgb(85, 75, 75);
    margin-bottom: 0.3rem;
}

.location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.responsibilities {
    list-style: none;
}

.responsibilities li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.responsibilities li::before {
    content: '•';
    color: #667eea;
    position: absolute;
    left: 0;
}

.education {
    background: #f8f9fa;
}

.contact {
    background: #333;
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-info a {
    color: white;
    font-weight: normal
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 0.2rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.social-links a:hover {
    opacity: 0.7;
}

.linkedin-icon,
.github-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-image {
        margin-left: 0;
        margin-top: 2rem;
    }

    .hero-image img {
        width: 300px;
        height: 375px;
    }

    .experience-header {
        flex-direction: column;
    }

    .experience-details {
        margin-left: 0;
        margin-top: 1rem;
    }
}