/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    background-color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 40px;
    width: auto;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1d1d1f;
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #007aff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007aff;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1d1d1f;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    color: white;
    z-index: 2;
    position: relative;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #007aff;
    color: white;
}

.btn-primary:hover {
    background: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* 为apply-section中的按钮添加特殊样式 */
.apply-section .btn-secondary {
    background: #f8f9fa;
    color: #1d1d1f;
    border: 2px solid #e5e5e7;
}

.apply-section .btn-secondary:hover {
    background: #e9ecef;
    border-color: #007aff;
    color: #007aff;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 100vh;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-element {
    position: absolute;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 100px 20px 40px;
        min-height: 100vh;
    }
    
    .hero .container {
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
    }
    
    .hero-content {
        text-align: left;
        order: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-top: 20px;
    }
    
    /* 优化移动端浮动图标布局 */
    .hero-visual {
        height: 200px;
        margin-top: 40px;
        order: 2;
        flex-shrink: 0;
    }
    
    .floating-elements {
        position: relative;
        height: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }
    
    .floating-element {
        position: relative;
        font-size: 2rem;
        color: rgba(255, 255, 255, 0.4);
        animation: float 6s ease-in-out infinite;
        margin: 0 10px;
    }
    
    .floating-element:nth-child(1) {
        top: auto;
        left: auto;
        animation-delay: 0s;
    }
    
    .floating-element:nth-child(2) {
        top: auto;
        right: auto;
        animation-delay: 2s;
    }
    
    .floating-element:nth-child(3) {
        bottom: auto;
        left: auto;
        animation-delay: 4s;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

.section-header p {
    font-size: 1.125rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #fbfbfd;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007aff, #5856d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
}

.about-card h3 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

.about-card p {
    color: #86868b;
    line-height: 1.6;
}

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

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

.value-item {
    text-align: center;
    padding: 40px 20px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: #f2f2f7;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.5rem;
    color: #007aff;
}

.value-item h3 {
    margin-bottom: 16px;
    color: #1d1d1f;
}

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

/* Why Join Us Section */
.why-join-section {
    padding: 100px 0;
    background: #fbfbfd;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34c759, #30d158);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: white;
}

.benefit-card h3 {
    margin-bottom: 12px;
    color: #1d1d1f;
}

.benefit-card p {
    color: #86868b;
    line-height: 1.6;
}

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: white;
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.job-card {
    background: white;
    border: 1px solid #e5e5e7;
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #007aff, #5856d6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    border-color: #007aff;
}

.job-card:hover::before {
    transform: scaleX(1);
}

.job-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
}

.job-card-header h3 {
    color: #1d1d1f;
    font-size: 1.25rem;
    flex: 1;
}

.job-type {
    background: #f2f2f7;
    color: #86868b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-location {
    color: #86868b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-description {
    color: #86868b;
    margin-bottom: 20px;
    line-height: 1.6;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.tag {
    background: #f2f2f7;
    color: #1d1d1f;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #007aff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.job-link:hover {
    color: #0056cc;
    transform: translateX(4px);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #fbfbfd;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: #007aff;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.contact-item h4 {
    margin-bottom: 4px;
    color: #1d1d1f;
}

.contact-item p {
    color: #86868b;
}

.social-links h4 {
    margin-bottom: 20px;
    color: #1d1d1f;
}

.social-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #1d1d1f;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.social-link i {
    font-size: 1.25rem;
    color: #007aff;
}

@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Footer */
.footer {
    background: #1d1d1f;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 12px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #86868b;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .about-grid,
    .values-grid,
    .benefits-grid,
    .jobs-grid {
        grid-template-columns: 1fr;
    }
    
    .about-card,
    .benefit-card,
    .job-card {
        padding: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-card,
.value-item,
.benefit-card,
.job-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Hover Effects */
.job-card:hover .job-link {
    transform: translateX(8px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Job Detail Page Styles */
.job-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: white;
}

.job-hero {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

.job-hero-content {
    max-width: 600px;
}

.job-title-section {
    margin-bottom: 24px;
}

.job-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-type-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.job-location-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.job-summary {
    margin-bottom: 32px;
}

.job-summary p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
}

.job-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.job-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.job-icon {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Job Content */
.job-content {
    padding: 80px 0;
    background: #fbfbfd;
}

.job-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.job-main {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.job-section {
    margin-bottom: 60px;
}

.job-section:last-child {
    margin-bottom: 0;
}

.job-section .section-header {
    margin-bottom: 32px;
    text-align: left;
}

.job-section .section-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1d1d1f;
    font-size: 1.75rem;
}

.job-section .section-header h2 i {
    color: #007aff;
}

/* Responsibilities Grid */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.responsibility-card {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.responsibility-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.responsibility-card .card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007aff, #5856d6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 1.25rem;
    color: white;
}

.responsibility-card h3 {
    margin-bottom: 12px;
    color: #1d1d1f;
    font-size: 1.125rem;
}

.responsibility-card p {
    color: #86868b;
    line-height: 1.6;
}

/* Skills Container */
.skills-container {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.skill-category h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #1d1d1f;
    font-size: 1.25rem;
}

.skill-category h3 i {
    color: #007aff;
}

.skills-grid {
    display: grid;
    gap: 12px;
}

.skill-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    background: #f0f0f0;
    transform: translateX(4px);
}

.skill-item i {
    color: #34c759;
    font-size: 1.125rem;
    margin-top: 2px;
}

.skill-item span {
    color: #1d1d1f;
    line-height: 1.5;
}

/* Bonus Points */
.bonus-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.bonus-item:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.bonus-item i {
    color: #007aff;
    font-size: 1.25rem;
}

.bonus-item span {
    color: #1d1d1f;
    font-weight: 500;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #34c759, #30d158);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
}

.benefit-content h3 {
    margin-bottom: 8px;
    color: #1d1d1f;
    font-size: 1.125rem;
}

.benefit-content p {
    color: #86868b;
    line-height: 1.6;
}

/* Sidebar */
.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sidebar-card h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: #1d1d1f;
    font-size: 1.125rem;
}

.sidebar-card h3 i {
    color: #007aff;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #f2f2f7;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007aff;
    font-size: 1rem;
    flex-shrink: 0;
}

.info-item strong {
    display: block;
    margin-bottom: 4px;
    color: #1d1d1f;
    font-size: 0.875rem;
}

.info-item p {
    color: #86868b;
    font-size: 0.875rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}



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

.apply-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apply-header {
    margin-bottom: 48px;
}

.apply-header h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #1d1d1f;
}

.apply-header h2 i {
    color: #007aff;
}

.apply-header p {
    color: #86868b;
    font-size: 1.125rem;
}

.apply-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #007aff, #5856d6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h3 {
    margin-bottom: 8px;
    color: #1d1d1f;
    font-size: 1.125rem;
}

.step-content p {
    color: #86868b;
    line-height: 1.6;
    font-size: 0.875rem;
}

.apply-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 32px;
    padding: 0 20px;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* Responsive Design for Job Pages */
@media (max-width: 1024px) {
    .job-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .job-sidebar {
        order: -1;
    }
}

@media (max-width: 768px) {
    .job-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .job-title {
        font-size: 2.5rem;
    }
    
    .job-meta {
        justify-content: center;
    }
    
    .job-actions {
        justify-content: center;
    }
    
    .job-main {
        padding: 24px;
    }
    
    .responsibilities-grid,
    .bonus-points,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .apply-steps {
        grid-template-columns: 1fr;
    }
    
    .apply-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        text-align: center;
    }
} 