* {
    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%;
}
body.contact-page {
    font-family: "Poppins", Arial, sans-serif;
    background: #f6f8fc;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* layout */
.contact-container {
    padding: 120px 12% 60px;
}

/* sections */
.contact-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* map */
.map-container {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
}

/* links */
.contact-section a {
    color: #0b3d91;
    text-decoration: none;
}

.contact-section a:hover {
    text-decoration: underline;
}
footer small {
    display: block;
    margin-top: 20px;
    opacity: 0.7;
    text-align: center;
}
