body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #6e6e6e;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.careers-header {
    background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
    padding: 0 0 80px;
}

.site-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 15px 30px;
    background: transparent;
    border-bottom: 1px solid transparent;
}

.logo {
    height: 50px;
    width: auto;
}

nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

nav a {
    color: #6e6e6e;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 6px;
    transition: background 0.3s;
}

nav a:hover {
    background: #f0f0f0;
}

.careers-intro-layout {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 28px;
    max-width: 1180px;
    margin: 0 auto;
    padding: 120px 30px 0 20px;
}

.careers-intro {
    max-width: 680px;
}

.careers-side-image {
    display: block;
    width: min(100%, 520px);
    height: auto;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.careers-side-image:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.careers-intro-line {
    margin: 0;
    font-size: 42px;
    font-weight: 700;
    line-height: 1.15;
    color: #2f2f2f;
}

.careers-intro-highlight,
.careers-bullets span,
.careers-section-title {
    color: #499c9c;
}

.careers-support-text {
    margin: 18px 0 0;
    font-size: 16px;
    line-height: 1.8;
    color: #6e6e6e;
}

.careers-bullets {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
    color: #2f2f2f;
}

.careers-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #499c9c;
}

.careers-bullets span {
    color: #499c9c;
    font-weight: 700;
}

.careers-btn {
    display: inline-block;
    margin-top: 24px;
    background: #499c9c;
    color: #ffffff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.careers-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
    background: #3f8787;
}

.careers-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 60px 30px 80px;
}

.careers-section-title {
    text-align: center;
    margin: 0 0 28px;
    font-size: 28px;
    color: #499c9c;
}

.careers-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 24px;
}

.career-card {
    background: #f8fcfc;
    border: 1px solid rgba(73, 156, 156, 0.15);
    border-radius: 14px;
    padding: 24px;
}

.career-card h3 {
    margin-top: 0;
    color: #2f2f2f;
}

.career-card p {
    margin-bottom: 0;
    line-height: 1.7;
}

.site-footer {
    background: #499c9c;
    color: #ffffff;
    padding: 96px 30px 36px;
    text-align: center;
    width: 100%;
}

.footer-content {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.footer-heading,
.footer-desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    color: #ffffff;
    max-width: 520px;
}

.footer-heading {
    font-weight: 700;
}

.footer-desc {
    font-weight: 400;
}

.footer-schedule-btn {
    display: inline-block;
    background: #ffffff;
    color: #499c9c;
    text-decoration: none;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
}

.footer-copy {
    margin: 16px 0 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    font-size: 13px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .careers-intro-layout {
        padding-top: 100px;
    }

    .careers-intro-line {
        font-size: 34px;
    }

    .careers-grid {
        grid-template-columns: 1fr;
    }
}
