* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    margin-bottom: 60px;
}

.logo img {
    max-width: 400px;
    width: 100%;
    height: auto;
    display: block;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fff;
}

.logo-link {
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.logo-link:hover {
    opacity: 0.6;
}

.content {
    max-width: 600px;
}

.description {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.contact {
    margin-bottom: 40px;
}

.contact a {
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: opacity 0.2s;
}

.contact a:hover {
    opacity: 0.6;
}

.hiring-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    border-bottom: 2px solid #000;
    padding-bottom: 2px;
    transition: opacity 0.2s;
}

.hiring-link:hover {
    opacity: 0.6;
}

/* Jobs page styles */
.jobs-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.job-listing {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.job-listing:last-child {
    border-bottom: none;
}

.job-listing h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.job-type {
    font-size: 0.875rem;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 30px;
}

.job-listing h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #000;
}

.job-listing ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.job-listing li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 8px;
}

.slash-list {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 15px;
}

.apply-info {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid #e0e0e0;
    font-size: 1rem;
    color: #444;
}

.apply-info a {
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    transition: opacity 0.2s;
}

.apply-info a:hover {
    opacity: 0.6;
}

.job-description {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.job-details {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: #555;
}

/* Policy page styles */
.policy-page {
    justify-content: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.policy-content {
    max-width: 700px;
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #000;
    line-height: 1.3;
}

.last-updated {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 40px;
}

.policy-content section {
    margin-bottom: 32px;
}

.policy-content h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #000;
}

.policy-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 12px;
}

.policy-content ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.policy-content li {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 6px;
}

.policy-content a {
    color: #000;
    text-decoration: underline;
}

.policy-content a:hover {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 60px 24px;
    }

    .logo {
        margin-bottom: 40px;
    }

    .logo img {
        max-width: 280px;
    }

    .description {
        font-size: 1rem;
    }

    .jobs-content h2 {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }

    .job-listing h3 {
        font-size: 1.25rem;
    }

    .policy-page {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .policy-content h1 {
        font-size: 1.5rem;
    }

    .policy-content h2 {
        font-size: 1.125rem;
    }
}
