/* Main Content */
.careers-main {
    padding: 80px 0;
    background-color: #fff;
}

/* Hero Section */
.careers-hero {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
}

.careers-hero::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.careers-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.careers-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
}

/* Features Section */
.careers-features {
    padding: 60px 0;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-title {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.feature-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.feature-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

/* Policy Section */
.careers-policy {
    margin-top: 60px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
}

.policy-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 600;
}

.policy-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
}

.privacy-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .careers-title {
        font-size: 2.4rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .careers-main {
        padding: 60px 0;
    }

    .careers-title {
        font-size: 2rem;
    }

    .careers-hero {
        padding: 0 20px;
    }

    .careers-policy {
        padding: 30px 20px;
    }
} 