/* Hero section styles */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e5e5;
    padding: 40px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.hero-left h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #000;
    font-weight: 700;
}

.hero-left h1 .cv-accent {
    text-decoration: underline;
    text-decoration-color: #10b981;
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
}

.hero-left .tagline {
    font-size: 1.3em;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Benefits list */
.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: start;
    gap: 12px;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    margin-top: 2px;
}

.check-icon::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.benefit-text {
    flex: 1;
}

.benefit-text strong {
    display: block;
    color: #000;
    margin-bottom: 4px;
    font-size: 1.05em;
}

.benefit-text span {
    color: #666;
    font-size: 0.95em;
    line-height: 1.4;
}