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

body.careers-page {
    font-family: "Poppins", Arial, sans-serif;
    
    color: #1a1a1a;
    line-height: 1.7;
    overflow-x: hidden;
}

/* =========================
   HEADER (CAREERS)
========================= */

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 6%;
}

/* logo */
.logo img {
    height: 80px; /* smaller than homepage */
}

/* nav */
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
}

nav ul li a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
    font-size: 20px;
}

/* underline animation */
nav ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #e67410;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}
main {
    padding: 50px 10%;
    max-width: 1200px;
    margin: auto;
}

h1 {
    font-size: 36px;
    color: #e67410;
    margin-bottom: 10px;
}

main > p {
    margin-bottom: 30px;
    color: #444;
}
section {
    margin-bottom: 25px;
}

details {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 14px;
    padding: 18px 20px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

details:hover {
    transform: translateY(-3px);
}

/* summary (job title bar) */
summary {
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
}

/* job content spacing */
.job-content {
    margin-top: 15px;
}
.job-content p {
    margin-bottom: 12px;
    color: #333;
}

.job-content h2,
.job-content h3 {
    margin: 18px 0 10px;
    color: #e67410;
}

.job-content ul {
    margin-left: 20px;
    margin-bottom: 12px;
}

.job-content ul li {
    margin-bottom: 6px;
}
a[href^="mailto"] {
    display: inline-block;
    margin-top: 10px;

    padding: 10px 16px;
    border-radius: 10px;

    background: #e67410;
    color: white;
    text-decoration: none;
    font-weight: 500;

    transition: 0.3s;
}

a[href^="mailto"]:hover {
    background: #1c55f2;
    transform: translateY(-2px);
}
footer {
    margin-top: 60px;
    padding: 40px 10%;
    color: #000000;
}

footer a {
    color: #000000;
    text-decoration: none;
    opacity: 0.9;
}

footer a:hover {
    opacity: 1;
}

footer ul {
    list-style: none;
    margin-top: 10px;
}

footer small {
    display: block;
    margin-top: 20px;
    opacity: 0.7;
    text-align: center;
}
