* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.career-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.career-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.career-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
}

.team-member {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-name {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #666;
    font-size: 0.9rem;
}

.career-cta {
    text-align: center;
    margin: 4rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 8px;
}

.cta-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
}

.cta-text {
    color: #666;
    margin-bottom: 2rem;
}

.cta-btn {
    padding: 0.8rem 2rem;
    background-color: #ff6b6b;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-btn:hover {
    background-color: #ff4c4c;
}

@media (max-width: 768px) {
    .career-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }

    .member-image img {
        height: 200px;
    }
}