
.about-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.about-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: #1e293b;
}

.highlight {
    color: #3b82f6;
    position: relative;
}

.about-hero-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-hero-actions {
    margin-top: 2rem;
    text-align: center;
}

.explore-jobs-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.explore-jobs-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.explore-jobs-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.explore-jobs-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.explore-jobs-btn:hover::before {
    left: 100%;
}

/* About Company Section */
.about-company-section {
    padding: 80px 0;
    background: white;
}

.about-company-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    text-align: center;
    margin-bottom: 3rem;
}

.about-company-text {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.about-company-text p {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-company-text p:last-child {
    margin-bottom: 0;
}

.about-company-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    background: #f8fafc;
}

.why-choose-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 4rem;
}

.choose-us-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.choose-us-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    background: white;
    padding: 3rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.choose-us-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.choose-us-item:hover::before {
    left: 100%;
}

.choose-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.choose-us-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.choose-us-item:nth-child(even) .choose-us-image {
    order: 2;
}

.choose-us-item:nth-child(even) .choose-us-text {
    order: 1;
}

.choose-us-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
    overflow: hidden;
    position: relative;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.image-placeholder span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.image-placeholder span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
}

.choose-us-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.3;
    position: relative;
}

.choose-us-text h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.choose-us-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* For Employers Section */
.for-employers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    position: relative;
    color: white;
}

.for-employers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.employers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.employers-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    position: relative;
}

.employers-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    border-radius: 2px;
}

.employers-intro {
    font-size: 1.2rem;
    color: #e2e8f0;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.services-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.service-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: white;
}

.employers-cta {
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.employers-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
}

.cta-text {
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.employers-cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.employers-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.employers-cta-btn:hover::before {
    left: 100%;
}

.employers-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
}

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

.employers-placeholder {
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.employers-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.4);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

.placeholder-content:hover img {
    transform: scale(1.05);
}

.employers-placeholder .placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.employers-placeholder .placeholder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Responsive Styles for Employers Section */
@media (max-width: 768px) {
    .for-employers-section {
        padding: 60px 0;
    }
    
    .employers-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .employers-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .employers-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .employers-intro {
        font-size: 1.1rem;
        text-align: center;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .employers-cta {
        text-align: center;
        padding: 1.5rem;
    }
    
    .employers-cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .employers-placeholder {
        height: 300px;
    }
    
    .employers-placeholder .placeholder-content h3 {
        font-size: 1.5rem;
    }
    
    .employers-placeholder .placeholder-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .for-employers-section {
        padding: 40px 0;
    }
    
    .employers-content {
        gap: 2rem;
    }
    
    .employers-text h2 {
        font-size: 1.8rem;
    }
    
    .employers-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .service-item {
        padding: 0.875rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .employers-cta {
        padding: 1.25rem;
    }
    
    .cta-text {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    
    .employers-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
    }
    
    .employers-placeholder {
        height: 250px;
    }
}

/* For Job Seekers Section */
.for-job-seekers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
}

.job-seekers-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.job-seekers-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
    position: relative;
}

.job-seekers-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 2px;
}

.job-seekers-intro {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.benefits-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border-radius: 0.75rem;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s ease;
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
}

.benefit-icon {
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e293b;
}

.job-seekers-cta {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
}

.job-seekers-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.job-seekers-cta .cta-text {
    font-size: 1.2rem;
    color: #1e293b;
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-seekers-cta-btn {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    border-radius: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.job-seekers-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.job-seekers-cta-btn:hover::before {
    left: 100%;
}

.job-seekers-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

.job-seekers-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-seekers-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.4);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.job-seekers-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -10px rgba(59, 130, 246, 0.5);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.5rem;
    transition: transform 0.3s ease;
}

.placeholder-content:hover img {
    transform: scale(1.05);
}

.job-seekers-placeholder .placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.job-seekers-placeholder .placeholder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #64748b;
    font-weight: 500;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background: white;
}

.mission-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.mission-description {
    font-size: 1.2rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.value p {
    color: #64748b;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    padding: 80px 0;
    background: #f8fafc;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-highlights {
    margin-top: 3rem;
}

.highlight-item {
    padding: 1.5rem 0;
    border-left: 4px solid #3b82f6;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

.highlight-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 0.5rem;
}

.highlight-item p {
    color: #64748b;
    margin-bottom: 0;
}

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

.story-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-placeholder:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -5px rgba(59, 130, 246, 0.4);
}

.placeholder-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s ease;
}

.placeholder-content:hover img {
    transform: scale(1.05);
}

.placeholder-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.placeholder-content p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: white;
}

.values-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.value-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.value-card .value-icon {
    font-size: 2rem;
    margin-right: 1rem;
}

.value-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
}

.value-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar-placeholder {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.team-member h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary {
    background: #3b82f6;
    color: white;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.cta-primary:hover {
    background: #1d4ed8;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: white;
    color: #1e293b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }

    .about-hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-hero-actions {
        margin-top: 1.5rem;
    }

    .explore-jobs-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-seekers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .job-seekers-placeholder {
        height: 250px;
    }

    .job-seekers-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .job-seekers-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .job-seekers-intro {
        text-align: center;
        font-size: 1.1rem;
    }

    .benefits-section h3 {
        text-align: center;
    }

    .job-seekers-cta {
        text-align: center;
        padding: 1.5rem;
    }

    .job-seekers-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .story-image {
        order: -1;
    }

    .story-placeholder {
        height: 250px;
    }

    .placeholder-content img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        max-width: 300px;
    }

    .choose-us-item {
        grid-template-columns: 1fr !important;
        gap: 2rem;
        padding: 2rem;
        text-align: center;
    }

    .choose-us-item:nth-child(even) .choose-us-image,
    .choose-us-item:nth-child(even) .choose-us-text {
        order: unset;
    }

    .choose-us-image {
        justify-content: center;
        margin-bottom: 1rem;
    }

    .image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 1rem;
        margin: 0 auto;
    }

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

    .choose-us-text h3 {
        font-size: 1.3rem;
        text-align: center;
        margin-bottom: 1rem;
    }

    .choose-us-text h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .choose-us-text p {
        font-size: 1rem;
        text-align: center;
        line-height: 1.6;
    }

    .employers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .employers-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .employers-intro {
        font-size: 1.1rem;
        text-align: center;
    }

    .services-section {
        text-align: center;
    }

    .employers-placeholder {
        height: 250px;
    }

    .employers-placeholder .placeholder-content h3 {
        font-size: 1.5rem;
    }

    .employers-cta {
        text-align: center;
    }

    .employers-cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .job-seekers-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .job-seekers-text h2 {
        font-size: 2rem;
        text-align: center;
    }

    .job-seekers-intro {
        font-size: 1.1rem;
        text-align: center;
    }

    .benefits-section {
        text-align: center;
    }

    .job-seekers-placeholder {
        height: 250px;
    }

    .job-seekers-placeholder .placeholder-content h3 {
        font-size: 1.5rem;
    }

    .job-seekers-cta {
        text-align: center;
    }

    .job-seekers-cta-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 60px;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .mission-content h2,
    .story-text h2,
    .values-section h2,
    .team-section h2 {
        font-size: 2rem;
    }

    .stat {
        padding: 1.5rem;
    }

    .stat h3 {
        font-size: 2rem;
    }

    .value,
    .value-card,
    .team-member {
        padding: 1.5rem;
    }
}