body {
background-color: var(--beige);
color: var(--text);
line-height: 1.6;
/* background-color: red; */

}
*{
    outline: 2px solid ridge;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.careers-hero {
padding: 8rem 0 4rem;
text-align: center;
background: linear-gradient(135deg, var(--beige) 0%, var(--light-beige) 100%);
}

h1 {
font-size: 3rem;
font-weight: 400;
margin-bottom: 1.5rem;
letter-spacing: -0.02em;
}

h2 {
font-size: 2.2rem;
font-weight: 400;
margin-bottom: 2rem;
letter-spacing: -0.01em;
}

h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
}

p {
color: var(--light-text);
margin-bottom: 1.5rem;
font-weight: 350;
font-size: 1.1rem;
}

.section {
padding: 5rem 0;
}

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

.role-card {
background: var(--white);
border-radius: 8px;
padding: 2rem;
transition: all 0.4s ease;
position: relative;
overflow: hidden;
cursor: pointer;
border: 1px solid transparent;
}

.role-card:hover {
transform: translateY(-8px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
border-color: var(--accent);
}

.role-card.expanded {
grid-column: 1 / -1;
transform: translateY(-5px);
box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.role-category {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1rem;
color: var(--light-text);
font-size: 0.9rem;
}

.role-icon {
width: 40px;
height: 40px;
background-color: var(--dark-beige);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
transition: all 0.3s ease;
}

.role-card:hover .role-icon {
background-color: var(--accent);
transform: scale(1.1);
}

.role-tags {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin-top: 1.5rem;
}

.tag {
padding: 0.3rem 0.8rem;
background-color: var(--light-beige);
border-radius: 4px;
font-size: 0.8rem;
color: var(--light-text);
transition: all 0.3s ease;
}

.role-card:hover .tag {
background-color: var(--accent);
color: var(--text);
}

.role-details {
max-height: 0;
overflow: hidden;
transition: max-height 0.5s ease;
margin-top: 0;
}

.role-card.expanded .role-details {
max-height: 500px;
margin-top: 1.5rem;
}

.detail-item {
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--dark-beige);
}

.detail-item:last-child {
border-bottom: none;
}

.detail-title {
font-weight: 500;
margin-bottom: 0.5rem;
color: var(--text);
}

.detail-list {
padding-left: 1.5rem;
color: var(--light-text);
}

.detail-list li {
margin-bottom: 0.5rem;
}

.expand-indicator {
position: absolute;
top: 2rem;
right: 2rem;
transition: transform 0.3s ease;
color: var(--light-text);
}

.role-card.expanded .expand-indicator {
transform: rotate(180deg);
}

.btn {
padding: 0.9rem 2rem;
border: 1px solid var(--text);
background: transparent;
color: var(--text);
border-radius: 4px;
font-size: 1rem;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 400;
text-decoration: none;
display: inline-block;
}

.btn-primary {
background-color: var(--text);
color: var(--white);
}

.btn:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.role-actions {
display: flex;
gap: 1rem;
margin-top: 1.5rem;
opacity: 0;
transition: opacity 0.3s ease;
}

.role-card.expanded .role-actions {
opacity: 1;
}

.filter-container {
display: flex;
justify-content: center;
gap: 1rem;
margin-bottom: 2rem;
flex-wrap: wrap;
}

.filter-btn {
padding: 0.7rem 1.5rem;
background: var(--white);
border: 1px solid var(--dark-beige);
border-radius: 30px;
cursor: pointer;
transition: all 0.3s ease;
font-size: 0.9rem;
}

.filter-btn.active {
background-color: var(--text);
color: var(--white);
border-color: var(--text);
}

.filter-btn:hover:not(.active) {
border-color: var(--text);
}

.role-card.hidden {
display: none;
}

.why-join {
background-color: var(--white);
}

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

.benefit {
text-align: center;
padding: 2rem;
transition: transform 0.3s ease;
}

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

.benefit-icon {
font-size: 2.5rem;
color: var(--accent);
margin-bottom: 1.5rem;
}

.application-process {
background-color: var(--light-beige);
}

.process-steps {
display: flex;
justify-content: space-between;
margin-top: 3rem;
position: relative;
}

.process-steps::before {
content: '';
position: absolute;
top: 40px;
left: 10%;
right: 10%;
height: 2px;
background-color: var(--dark-beige);
z-index: 1;
}

.step {
text-align: center;
position: relative;
z-index: 2;
flex: 1;
transition: transform 0.3s ease;
}

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

.step-number {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: var(--white);
display: flex;
align-items: center;
justify-content: center;
margin: 0 auto 1.5rem;
font-size: 1.5rem;
font-weight: 500;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
}

.step:hover .step-number {
background-color: var(--accent);
transform: scale(1.1);
}

.cta-section {
text-align: center;
padding: 5rem 0;
}

.stats-container {
display: flex;
justify-content: space-around;
margin: 3rem 0;
text-align: center;
}

.stat {
padding: 1rem;
}

.stat-number {
font-size: 2.5rem;
font-weight: 300;
color: var(--text);
margin-bottom: 0.5rem;
}

.stat-label {
color: var(--light-text);
font-size: 0.9rem;
}

@media (max-width: 968px) {
.roles-grid {
grid-template-columns: 1fr;
}

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

.process-steps {
flex-direction: column;
gap: 2rem;
}

.process-steps::before {
display: none;
}

.stats-container {
flex-direction: column;
gap: 2rem;
}
}