body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 48px 24px 48px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.left-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.company-name {
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #1a237e;
}

.tagline {
    font-size: 1.1rem;
    color: #3949ab;
    margin-top: 6px;
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    margin-top: 6px;
}

.nav-link {
    text-decoration: none;
    color: #222;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.2s;
    padding: 6px 12px;
    border-radius: 4px;
}

.nav-link:hover, .nav-link:focus {
    color: #fff;
    background: #3949ab;
    outline: none;
}

@media (max-width: 700px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 16px 16px 16px;
    }
    .nav-links {
        margin-top: 18px;
        gap: 18px;
    }
    .company-name {
        font-size: 1.5rem;
    }
}

.hero-section {
    max-width: 900px;
    margin: 48px auto 32px auto;
    text-align: center;
    padding: 0 16px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 18px;
    color: #222;
    letter-spacing: 0.5px;
}

.hero-description {
    font-size: 1.18rem;
    color: #444;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 0;
}

.pain-points-section {
    max-width: 1400px;
    margin: 56px auto 32px auto;
    padding: 0 16px;
}

.pain-points-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 28px;
    text-align: left;
    margin-left: 0;
}

.pain-points-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

@media (max-width: 900px) {
    .pain-points-list {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}

.why-section {
    margin-top: 56px;
}

.why-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    background: #f4f6fc;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(60,60,120,0.04);
    padding: 32px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    min-width: 220px;
}

.why-item {
    padding: 14px 18px;
    margin-bottom: 10px;
    font-size: 1.08rem;
    font-weight: 500;
    color: #283593;
    background: #e8eaf6;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    border: none;
    outline: none;
}

.why-item.active, .why-item:hover, .why-item:focus {
    background: #3949ab;
    color: #fff;
}

.why-detail {
    flex: 1;
    min-width: 260px;
    padding: 8px 0 8px 24px;
}

.why-desc {
    font-size: 1.13rem;
    color: #222;
    line-height: 1.7;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 4px rgba(60,60,120,0.06);
    padding: 24px 22px;
    min-height: 120px;
    transition: opacity 0.2s;
}

@media (max-width: 900px) {
    .why-container {
        flex-direction: column;
        gap: 18px;
        padding: 18px 6px;
    }
    .why-detail {
        padding-left: 0;
    }
}

.careers-section {
    max-width: 1000px;
    margin: 48px auto 32px auto;
    padding: 0 16px;
}

.careers-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 36px;
    text-align: center;
}

.job-posting {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(60,60,120,0.06);
    padding: 40px 32px 32px 32px;
    margin-bottom: 48px;
}

.job-posting > *:not(:last-child) {
    margin-bottom: 16px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #283593;
    margin-bottom: 10px;
}

.job-desc,
.job-why p,
.job-comp p {
    text-align: justify;
    margin-bottom: 4px;
}

.job-posting h3 {
    font-size: 1.08rem;
    color: #3949ab;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-posting ul {
    margin: 0 0 4px 24px;
    padding: 0;
    font-size: 1rem;
    color: #222;
    line-height: 1.6;
}

.job-posting ul li {
    margin-bottom: 2px;
    line-height: 1.6;
}

.job-posting hr {
    border: none;
    border-top: 1px solid #e0e4ef;
    margin: 14px 0;
}

.job-why, .job-comp {
    background: #f4f6fc;
    border-radius: 8px;
    padding: 18px 18px 12px 18px;
    margin-bottom: 0;
}

.apply-message {
    background: #e8eaf6;
    border-radius: 8px;
    padding: 18px 18px;
    margin-top: 24px;
    text-align: center;
}

.apply-message a {
    color: #3949ab;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.2s;
}

.apply-message a:hover, .apply-message a:focus {
    color: #1a237e;
}

@media (max-width: 700px) {
    .careers-section {
        max-width: 100%;
        padding: 0 4px;
    }
    .job-posting {
        padding: 18px 6px 14px 6px;
    }
    .job-why, .job-comp {
        padding: 12px 8px 8px 8px;
    }
}

.register-section {
    max-width: 500px;
    margin: 64px auto 32px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(60,60,120,0.06);
    padding: 36px 28px 28px 28px;
}

.register-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a237e;
    margin-bottom: 24px;
    text-align: center;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 1rem;
    color: #3949ab;
    font-weight: 500;
}

.form-group input {
    padding: 8px 10px;
    border: 1px solid #bfc7e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border 0.2s;
}

.form-group input:focus {
    border: 1.5px solid #3949ab;
    outline: none;
}

.register-btn {
    background: #3949ab;
    color: #fff;
    font-size: 1.08rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    padding: 10px 0;
    margin-top: 8px;
    cursor: pointer;
    transition: background 0.2s;
}

.register-btn:hover, .register-btn:focus {
    background: #1a237e;
}

.form-message {
    margin-top: 12px;
    font-size: 1rem;
    text-align: center;
    min-height: 22px;
}

@media (max-width: 600px) {
    .register-section {
        padding: 18px 6px 14px 6px;
    }
}

.register-intro {
    margin-bottom: 18px;
    text-align: center;
}

.register-highlight {
    font-size: 1.3rem;
    color: #283593;
    font-weight: 500;
    margin-bottom: 4px;
}

.register-cta {
    font-size: 1.6rem;
    color: #d32f2f;
    font-weight: 600;
    margin-bottom: 0;
}

.site-footer {
    background: #f4f6fc;
    color: #222;
    text-align: center;
    padding: 28px 12px 18px 12px;
    font-size: 1rem;
    margin-top: 48px;
    border-top: 1px solid #e0e4ef;
}

.footer-message {
    font-size: 1.08rem;
    margin-bottom: 8px;
    color: #283593;
    font-weight: 500;
}

.footer-contact {
    margin-bottom: 6px;
    color: #3949ab;
    font-weight: 500;
}

.footer-contact a {
    color: #3949ab;
    text-decoration: underline;
}

.footer-contact a:hover, .footer-contact a:focus {
    color: #1a237e;
}

.footer-copyright {
    font-size: 0.98rem;
    color: #222;
}

.resources-section {
    max-width: 700px;
    margin: 64px auto 32px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(60,60,120,0.06);
    padding: 40px 28px 32px 28px;
    text-align: center;
}

.resources-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 28px;
}

.resources-coming-soon {
    font-size: 1.18rem;
    color: #3949ab;
    margin-top: 18px;
    line-height: 1.7;
}

.hidden {
    display: none !important;
} 