* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    display: flex;
    min-height: 100vh;
}

/* Sidebar Styles */
.sidebar {
    width: 80px;
    background-color: #000;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 3rem;
    color: #fff;
    text-decoration: none;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.nav-item {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-item:hover, .nav-item.active {
    color: #FFD700;
}

/* Main Content Styles */
.main-content {
    flex: 1;
    margin-left: 80px;
    display: flex;
    min-height: 100vh;
}

.hero {
    display: flex;
    width: 100%;
}

.hero-image {
    width: 50%;
    height: 100vh;
    object-fit: cover;
}

.hero-content {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    -webkit-text-stroke: 2px white;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.highlight {
    color: #FFD700;
}

.hire-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #FFD700;
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.hire-btn:hover {
    background-color: #FFD700;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .hero-image, .hero-content {
        width: 100%;
    }

    .hero-image {
        height: 50vh;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle, .hero-description {
        font-size: 1.2rem;
    }
}