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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 
                 'Microsoft YaHei', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #2F4F3E 0%, #3B5D4A 100%);
    min-height: 100vh;
}

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

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-name {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #2F4F3E 0%, #3B5D4A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 16px;
    border: 2px solid #3B5D4A;
    background: white;
    color: #2F4F3E;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: #f0f4f1;
}

.lang-btn.active {
    background: linear-gradient(135deg, #2F4F3E 0%, #3B5D4A 100%);
    color: white;
    border-color: transparent;
}

/* Hero Section */
.hero {
    padding: 60px 0 40px;
    text-align: center;
}

.hero-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-size: 36px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.4;
}

.subtitle {
    font-size: 24px;
    color: #4a5568;
    font-weight: 500;
}

/* CTA Boxes Section */
.cta-boxes {
    padding: 60px 0;
}

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

.cta-box {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.cta-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    line-height: 1.4;
}

.cta-text {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-button {
    background: linear-gradient(135deg, #2F4F3E 0%, #3B5D4A 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 79, 62, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 79, 62, 0.6);
}

.cta-button:active {
    transform: translateY(0);
}

/* Recruitment Section */
.recruitment {
    padding: 60px 0;
}

.recruitment-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #2F4F3E 0%, #C9A24D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.recruitment-category {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid #3B5D4A;
}

.category-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-block {
    margin-bottom: 10px;
}

.block-title {
    font-size: 18px;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
}

.content-list {
    list-style: none;
    padding-left: 0;
}

.content-list li {
    font-size: 16px;
    color: #4a5568;
    padding: 8px 0 8px 30px;
    position: relative;
    line-height: 1.6;
}

.content-list li::before {
    content: "•";
    color: #C9A24D;
    font-size: 24px;
    position: absolute;
    left: 10px;
    top: 4px;
}

.keywords {
    margin-top: 20px;
    padding: 15px 20px;
    background: linear-gradient(135deg, rgba(47, 79, 62, 0.1) 0%, rgba(201, 162, 77, 0.1) 100%);
    border-radius: 10px;
    border-left: 4px solid #C9A24D;
}

.keywords-label {
    font-weight: 600;
    color: #2d3748;
    margin-right: 10px;
}

.keywords-text {
    color: #4a5568;
    font-size: 15px;
}

/* Final CTA */
.recruitment-cta {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
    margin-top: 40px;
}

.cta-final-title {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 25px;
}

.cta-final-text {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.8;
}

.cta-final-list {
    list-style: none;
    padding-left: 0;
    margin: 30px auto;
    max-width: 700px;
    text-align: left;
}

.cta-final-list li {
    font-size: 16px;
    color: #4a5568;
    padding: 10px 0 10px 35px;
    position: relative;
    line-height: 1.6;
}

.cta-final-list li::before {
    content: "✓";
    color: #C9A24D;
    font-size: 20px;
    font-weight: bold;
    position: absolute;
    left: 10px;
    top: 10px;
}

.cta-button-large {
    font-size: 18px;
    padding: 16px 40px;
    margin-top: 30px;
}

/* Footer Styles */
.footer {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-content {
    text-align: center;
    color: white;
}

.contact {
    font-size: 18px;
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
}

.email-link {
    color: #C9A24D;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #d4b56a;
    text-decoration: underline;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .brand-name {
        font-size: 22px;
    }

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

    .header-flex {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        padding: 40px 0 30px;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .tagline {
        font-size: 26px;
    }

    .subtitle {
        font-size: 18px;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cta-title {
        font-size: 20px;
    }

    .cta-text {
        font-size: 15px;
    }

    .section-title {
        font-size: 26px;
    }

    .section-description {
        font-size: 16px;
    }

    .recruitment-category {
        padding: 30px 20px;
    }

    .category-title {
        font-size: 20px;
    }

    .recruitment-cta {
        padding: 40px 20px;
    }

    .cta-final-title {
        font-size: 24px;
    }

    .cta-final-text {
        font-size: 16px;
    }

    .cta-final-list {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .tagline {
        font-size: 22px;
    }

    .subtitle {
        font-size: 16px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .cta-title {
        font-size: 18px;
    }

    .cta-text {
        font-size: 14px;
    }

    .cta-button {
        font-size: 14px;
        padding: 12px 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .category-title {
        font-size: 18px;
    }

    .block-title {
        font-size: 16px;
    }

    .content-list li {
        font-size: 14px;
        padding-left: 25px;
    }

    .cta-final-title {
        font-size: 20px;
    }

    .cta-button-large {
        font-size: 16px;
        padding: 14px 30px;
    }
}
