* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
    overflow-x: hidden;
}
.btn-signin a {
                color: #35D1D1;
                text-decoration: none;
            }
            
            .btn-signin:hover {
                background: rgba(53, 209, 209, 0.1);
                transform: translateY(-2px);
            }
            
            .btn-join a {
                color: white;
                text-decoration: none;
            }

/* Navigation */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    padding: 0 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(53, 209, 209, 0.1);
    box-shadow: 0 2px 20px rgba(53, 209, 209, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    height: 70px;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 48px;
}

.logo img {
    width: auto;
    height: 40px;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #35D1D1;
    transition: width 0.3s;
}

.nav-links a:hover {
    color: #35D1D1;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-signin {
    background: transparent;
    color: #35D1D1;
    border: 2px solid #35D1D1;
}

.btn-signin:hover {
    background: rgba(53, 209, 209, 0.1);
    transform: translateY(-2px);
}

.btn-join {
    background: #35D1D1;
    color: white;
    box-shadow: 0 4px 12px rgba(53, 209, 209, 0.3);
}

.btn-join:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(53, 209, 209, 0.4);
}


/* Hero Section */

.hero-careers {
    margin-top: 70px;
    padding: 100px 5% 80px;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-careers::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero-careers::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.hero-careers .hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-careers .hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease;
}

.hero-careers .hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-careers .hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-careers .stat-item {
    text-align: center;
}

.hero-careers .stat-number {
    font-size: 48px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.hero-careers .stat-label {
    font-size: 16px;
    opacity: 0.9;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* Values Section */

.values-section {
    padding: 100px 5%;
    background: #f7fffe;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 18px;
    color: #718096;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(53, 209, 209, 0.15);
    border-color: rgba(53, 209, 209, 0.2);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 16px;
    color: #718096;
    line-height: 1.7;
}


/* Benefits Section */

.benefits-section {
    padding: 100px 5%;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.benefit-item {
    background: linear-gradient(135deg, #f7fffe 0%, #ffffff 100%);
    padding: 32px 28px;
    border-radius: 12px;
    border-left: 4px solid #35D1D1;
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.1);
}

.benefit-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-icon {
    font-size: 24px;
}

.benefit-item p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}


/* Open Positions Section */

.positions-section {
    padding: 100px 5%;
    background: #f7fffe;
}

.filters {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #4a5568;
    transition: all 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: #35D1D1;
    border-color: #35D1D1;
    color: white;
    transform: translateY(-2px);
}

.positions-container {
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
}

.position-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(53, 209, 209, 0.15);
    border-color: #35D1D1;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
    gap: 20px;
}

.position-title {
    font-size: 24px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.position-badge {
    background: rgba(53, 209, 209, 0.1);
    color: #35D1D1;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.position-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #718096;
    font-size: 15px;
}

.meta-icon {
    color: #35D1D1;
}

.position-description {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.position-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tag {
    background: #f7fafc;
    color: #4a5568;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    border: 1px solid #e2e8f0;
}

.apply-btn {
    background: #35D1D1;
    color: white;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.apply-btn:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(53, 209, 209, 0.3);
}


/* Team Section */

.team-section {
    padding: 100px 5%;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    text-align: center;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: white;
    box-shadow: 0 8px 24px rgba(53, 209, 209, 0.2);
}

.member-name {
    font-size: 20px;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.member-role {
    font-size: 15px;
    color: #35D1D1;
    font-weight: 500;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
}


/* CTA Section */

.cta-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-primary {
    background: #35D1D1;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(53, 209, 209, 0.3);
}

.btn-primary:hover {
    background: #2bb8b8;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(53, 209, 209, 0.4);
}


/* Footer */

footer {
    background: white;
    color: #2d3748;
    padding: 60px 5% 30px;
    border-top: 1px solid rgba(53, 209, 209, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1a202c;
}

.footer-column p {
    color: #718096;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #718096;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #35D1D1;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(53, 209, 209, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #35D1D1;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background: #35D1D1;
    color: white;
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(53, 209, 209, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #718096;
    font-size: 14px;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #718096;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #35D1D1;
}

.body_about {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #f3f6f8;
    max-width: 100%;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.body_about .network-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f3f6f8;
}

.body_about .network-icon {
    position: absolute;
    width: 32px;
    height: 32px;
    opacity: 0.4;
    color: #86b7d1;
}


/* Network connecting lines */

.body_about .network-line {
    position: absolute;
    height: 1px;
    background: #b8cdd9;
    opacity: 0.3;
}

.body_about .main-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 40px 20px;
    text-align: center;
}

.body_about .linkedin-logo {
    width: 80px;
    height: 80px;
    background: #04D7D9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
    letter-spacing: 1px;
}

.body_about .main-title {
    font-size: 3.5rem;
    font-weight: 400;
    color: #000000;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.body_about .description {
    font-size: 1.125rem;
    color: #666666;
    max-width: 680px;
    line-height: 1.6;
    font-weight: 400;
}


/* Icon definitions using Unicode/Emoji */

.body_about .icon-briefcase::before {
    content: '💼';
    font-size: 24px;
}

.body_about .icon-user::before {
    content: '👤';
    font-size: 24px;
}

.body_about .icon-building::before {
    content: '🏢';
    font-size: 24px;
}

.body_about .icon-search::before {
    content: '🔍';
    font-size: 24px;
}

.body_about .icon-trophy::before {
    content: '🏆';
    font-size: 24px;
}

.body_about .icon-chat::before {
    content: '💬';
    font-size: 24px;
}

.body_about .icon-globe::before {
    content: '🌐';
    font-size: 24px;
}

.body_about .icon-handshake::before {
    content: '🤝';
    font-size: 24px;
}

.body_about .icon-target::before {
    content: '🎯';
    font-size: 24px;
}

.body_about .icon-chart::before {
    content: '📈';
    font-size: 24px;
}

.body_about .icon-network::before {
    content: '🔗';
    font-size: 24px;
}

.body_about .icon-idea::before {
    content: '💡';
    font-size: 24px;
}
/* FAQ Section */

.faq {
    padding: 100px 5%;
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    border: 1px solid rgba(53, 209, 209, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(53, 209, 209, 0.1);
}

.faq-question {
    padding: 24px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 17px;
    color: #1a202c;
    user-select: none;
}

.faq-question:hover {
    color: #35D1D1;
}

.faq-toggle {
    font-size: 24px;
    color: #35D1D1;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    padding: 0 28px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 28px 24px;
}

.faq-answer p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

/* Responsive */

@media (max-width: 768px) {
    .body_about .main-title {
        font-size: 2.5rem;
    }
    .body_about .description {
        font-size: 1rem;
        padding: 0 20px;
    }
    .body_about .network-icon {
        width: 24px;
        height: 24px;
    }
    .body_about .network-icon::before {
        font-size: 18px !important;
    }
    .nav-links {
        display: none;
    }
    .hero-careers {
        padding: 80px 5% 60px;
    }
    .hero-content h1 {
        font-size: 36px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-careers .hero-stats {
        gap: 40px;
    }
    .hero-careers .stat-number {
        font-size: 36px;
    }
    .section-header h2 {
        font-size: 32px;
    }
    .values-section,
    .benefits-section,
    .positions-section,
    .team-section,
    .cta-section {
        padding: 60px 5%;
    }
    .position-header {
        flex-direction: column;
    }
    .position-meta {
        gap: 16px;
    }
    .filters {
        justify-content: flex-start;
    }
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .cta-content h2 {
        font-size: 32px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .nav-right .btn {
        padding: 10px 20px;
        font-size: 10px;
    }
    .logo {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    .hero-careers .hero-stats {
        gap: 30px;
    }
    .hero-careers .stat-number {
        font-size: 28px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    .position-title {
        font-size: 20px;
    }
}