/* ======================
   He n' She - style.css
   ====================== */

:root {
    --bg: #0b0b0b;
    --panel: #111111;
    --muted: #bfbfbf;
    --text: #f3f3f3;
    --accent: #ff2a8f;
    --accent-dark: #ff2a8f;
    --pink: #ff2a8f;
    --card: #0f0f0f;
    --radius: 12px;
    --max-width: 1200px;
    --gap: 24px;
    --nav-height: 76px;
}


/* reset */

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.55;
    overflow-x: hidden;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}


/* NAV */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1200;
    background: linear-gradient(180deg, rgba(0, 0, 0, .65), rgba(0, 0, 0, .35));
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    height: var(--nav-height);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.navbar-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo {
    width: 95px;
    height: 95px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .6);
    border: 3px solid rgba(255, 255, 255, .04);
}

.nav-brand-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.nav-brand {
    font-weight: 700;
    color: var(--accent);
    font-size: 20px;
}

.nav-subtitle {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

.main-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    padding: 8px 6px;
    border-radius: 6px;
    transition: all .18s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, .03);
    transform: translateY(-1px);
}

.nav-cta {
    display: inline-block;
    margin-left: 12px;
    background: var(--accent);
    color: #111;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
    border: 1px solid rgba(0, 0, 0, .08);
}

.nav-cta:hover {
    transform: translateY(-3px);
    background: var(--accent-dark);
}


/* mobile toggle */

.nav-toggle {
    display: none;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    color: var(--text);
    font-size: 20px;
    padding: 6px 10px;
    border-radius: 10px;
    cursor: pointer;
}


/* page padding so fixed nav doesn't overlap */

main,
section,
.hero-slider,
.our-story-section {
    padding-top: calc(var(--nav-height) + 10px);
}


/* HERO SLIDER */

.hero-slider {
    position: relative;
    width: 100%;
    min-height: 70vh;
    display: block;
    overflow: hidden;
    margin-bottom: 40px;
}


/* keep logo nearer centre on first slide */

.hero-slider .slide:nth-child(1) {
    background-position: 50% 35%;
}

.slides-wrapper {
    display: flex;
    flex-direction: row;
    transition: transform 0.7s cubic-bezier(.2, .9, .27, 1);
}

.slide {
    min-width: 100%;
    height: calc(78vh - 10px);
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .15) 0%, rgba(0, 0, 0, .6) 60%);
}

.slide-content {
    position: relative;
    z-index: 10;
    padding: 36px;
    max-width: 760px;
    margin-bottom: 48px;
    color: var(--text);
    text-align: left;
}

.slide-content h1 {
    font-size: 46px;
    line-height: 1.03;
    margin: 0 0 12px;
    font-weight: 700;
}

.slide-content h1 span {
    display: block;
    color: var(--accent);
}

.slide-content p {
    color: var(--muted);
    margin: 0 0 18px;
    font-size: 16px;
    max-width: 60%;
}

.slide .btn {
    background: var(--accent);
    color: #111;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
}

.slider-arrow {
    position: absolute;
    top: 48%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 8px;
    background: var(--accent);
    color: #111;
    border: 0;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .45);
    cursor: pointer;
    z-index: 30;
}

.slider-arrow.prev {
    left: 24px;
}

.slider-arrow.next {
    right: 24px;
}

.slider-arrow:hover {
    transform: translateY(-50%) scale(1.04);
}

.slider-dots {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 14px;
    display: flex;
    gap: 8px;
    z-index: 30;
}

.slider-dots button {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, .18);
    cursor: pointer;
    transition: all .15s;
}

.slider-dots button.active {
    background: var(--accent);
    transform: scale(1.15);
}


/* OUR STORY */

.our-story-section {
    padding: 42px 0 36px;
}

.story-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 18px;
}

.story-left {
    flex: 1;
}

.story-heading {
    font-size: 32px;
    color: var(--text);
    margin: 0 0 8px;
    font-weight: 700;
}

.story-lead {
    color: var(--muted);
    font-size: 17px;
    margin-bottom: 14px;
}

.story-text {
    color: var(--muted);
    font-size: 15px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 18px;
}

.feature-card {
    display: flex;
    gap: 14px;
    align-items: center;
    background: var(--panel);
    padding: 14px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .6);
}

.f-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, .02);
    display: grid;
    place-items: center;
    border-radius: 10px;
    font-size: 20px;
}

.f-body h4 {
    margin: 0;
    color: var(--text);
    font-size: 16px;
}

.f-body p {
    margin: 4px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.story-right {
    width: 420px;
    flex-shrink: 0;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
    display: block;
}


/* ABOUT */

.about-section {
    padding: 48px 0;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 36px;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 18px;
}

.about-image img {
    width: 420px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .6);
}

.about-text {
    flex: 1;
}

.about-text h1 {
    font-size: 30px;
    margin: 0 0 12px;
    color: var(--text);
}

.about-text p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.65;
}


/* SERVICES */

.services-section {
    padding: 48px 0;
}

.center {
    text-align: center;
}

.services-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: var(--max-width);
    margin: 14px auto;
    padding: 0 18px;
}

.service-card {
    display: flex;
    background: var(--card);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .6);
}

.service-card .text {
    padding: 20px;
    flex: 1;
}

.service-card h3 {
    margin: 0 0 8px;
    color: var(--text);
    font-size: 18px;
}

.service-card p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.img-box {
    width: 40%;
    min-width: 180px;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* ================= ACCORDION SERVICE SECTION ================= */

.accordion-section {
    background: transparent;
    padding: 60px 5%;
    color: #fff;
    text-align: center;
}

.accordion-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 40px;
}


/* Accordion wrapper */

.accordion {
    max-width: 1000px;
    margin: auto;
    background: #141414;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
}


/* Single accordion item */

.accordion-item {
    border-bottom: 1px solid #2a2a2a;
}

.accordion-item:last-child {
    border-bottom: none;
}


/* Accordion Header */

.accordion-header {
    width: 100%;
    padding: 18px 22px;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
    background: #1b1b1b;
    border: none;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.accordion-header:hover {
    background: #222;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}


/* Accordion Content */

.accordion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    background: #111;
    transition: max-height .4s ease, padding .4s ease;
}

.accordion-item.active .accordion-content {
    max-height: 700px;
    padding: 22px;
}

.accordion-content p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 14px;
}


/* ========= IMAGE SLIDER (INSIDE ACCORDION) ========= */

.service-slider {
    position: relative;
    margin-top: 16px;
    background: #101010;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 0;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}


/* slider track – MEDIUM BOX */


/* slider track – MEDIUM BOX */

.service-slides {
    display: flex;
    transition: transform 0.4s ease;
    height: 260px;
    /* medium box height (desktop) */
    overflow: hidden;
    position: relative;
    z-index: 1;
}


/* Each slide – hidden by default */

.service-slide {
    flex: 0 0 100%;
    display: none;
    /* hide all */
    justify-content: center;
    align-items: center;
}


/* Only active slide is visible */

.service-slide.active {
    display: flex;
}


/* image stays fully visible inside medium box */

.service-slide img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
    cursor: zoom-in;
}


/* Slider Arrows */

.service-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.70);
    border: none;
    color: #fff;
    font-size: 19px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(3px);
    transition: 0.2s;
    z-index: 5;
    /* above slides */
    pointer-events: auto;
}

.service-arrow.prev {
    left: 12px;
}

.service-arrow.next {
    right: 12px;
}

.service-arrow:hover {
    background: var(--accent);
    color: black;
}


/* Slider Dots */

.service-dots {
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 8px;
    padding-bottom: 4px;
}

.service-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.25);
    transition: all .2s ease;
}

.service-dots button.active {
    background: var(--accent);
    transform: scale(1.3);
}


/* ===== LIGHTBOX (FULL VIEW) ===== */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lightbox.open {
    display: flex;
}


/* IMPORTANT: class matches HTML: class="lightbox-image" */

.lightbox-image {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.9);
}


/* lightbox controls */

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.lightbox-arrow.prev {
    left: 20px;
}

.lightbox-arrow.next {
    right: 20px;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
    background: rgba(0, 0, 0, 0.9);
}


/* GALLERY */

.gallery-section {
    padding: 42px 0;
}

.gallery-section .muted {
    color: var(--muted);
}


/* ================= STUDIO & FACILITIES GRID ================= */

.studio-section {
    padding: 100px 0 100px;
    background: #080808;
    /* subtle contrast, still dark */
}

.studio-heading {
    font-size: 2.2rem;
    margin-bottom: 8px;
}

.studio-sub {
    max-width: 520px;
    margin: 0 auto 32px;
}


/* grid layout */

.studio-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}


/* each tile */

.studio-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    background: #151515;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.65);
}


/* images – fill the tile nicely */

.studio-item img {
    width: 100%;
    height: 260px;
    /* FIXED HEIGHT BOX */
    display: block;
    object-fit: contain;
    /* FULL IMAGE VISIBLE */
    background: #000;
    /* Adds black padding inside box */
    transition: transform 0.4s ease, opacity 0.4s ease;
    cursor: pointer;
}


/* overlay caption */

.studio-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.0));
    color: #f5f5f5;
    pointer-events: none;
}

.studio-overlay h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: #ffffff;
}

.studio-overlay p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--muted);
}


/* hover effect (desktop) */

.studio-item:hover img {
    transform: scale(1.05);
    opacity: 0.92;
}


/* ===== RESPONSIVE ===== */

@media (max-width: 960px) {
    .studio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 560px) {
    .studio-grid {
        grid-template-columns: 1fr;
    }
    .studio-overlay {
        padding: 12px 14px;
    }
}


/* TESTIMONIALS */

.testimonials-section {
    padding: 42px 0;
    background: transparent;
}

.test-grid {
    max-width: var(--max-width);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 14px auto;
    padding: 0 18px;
}

.test-card {
    background: var(--panel);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .6);
}

.test-card .stars {
    color: var(--pink);
    font-weight: 700;
    margin-bottom: 10px;
}

.test-name {
    margin: 0 0 6px;
    color: var(--text);
}

.test-quote {
    color: var(--muted);
    font-size: 14px;
}


/* CONTACT / MAP */

.contact-section {
    padding: 48px 0;
}

.contact-wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    gap: 28px;
    align-items: flex-start;
    padding: 0 18px;
}

.contact-left {
    flex: 1;
    min-width: 320px;
}

.contact-right {
    width: 420px;
    flex-shrink: 0;
}

.contact-title {
    font-size: 22px;
    margin-bottom: 12px;
}

.contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.ci-icon {
    font-size: 20px;
}

.ci-body h4 {
    margin: 0;
    color: var(--text);
    font-size: 14px;
}

.ci-body p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 14px;
}

.map-embed iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .6);
}

.contact-card {
    background: var(--card);
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .6);
}

.contact-card h3 {
    margin: 0 0 6px;
    color: var(--text);
}

.muted {
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 16px;
}

.contact-form label {
    display: block;
    margin-bottom: 12px;
}

.contact-form .label-text {
    display: block;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .04);
    background: rgba(255, 255, 255, .02);
    color: var(--text);
    outline: none;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .6);
    border-color: rgba(255, 255, 255, .06);
}

.form-actions {
    margin-top: 6px;
}

.contact-btn {
    background: var(--pink);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    border: 0;
    font-weight: 700;
    cursor: pointer;
}

.form-message {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: .95rem;
    display: inline-block;
}

.form-message.info {
    background: #f0f0f0;
    color: #222;
}

.form-message.success {
    background: #e6ffed;
    color: #1a7f37;
}

.form-message.error {
    background: #ffe6e6;
    color: #a00;
}


/* FOOTER */

.site-footer {
    margin-top: 48px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .5), rgba(0, 0, 0, .18));
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, .03);
}

.footer-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 18px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 220px;
}

.footer-logo {
    color: var(--accent);
    margin: 0;
    font-size: 20px;
}

.footer-tag {
    color: var(--muted);
    margin: 8px 0;
}

.footer-widgets {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.widget h4 {
    color: var(--text);
    margin-bottom: 8px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list a {
    color: var(--muted);
    text-decoration: none;
    display: block;
    margin-bottom: 6px;
}

.footer-bottom {
    max-width: var(--max-width);
    margin: 18px auto 0;
    padding: 8px 18px;
    border-top: 1px solid rgba(255, 255, 255, .03);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: var(--muted);
    font-size: 13px;
}


/* Accessibility focus */

a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 3px solid rgba(255, 193, 7, .12);
    outline-offset: 3px;
}


/* ============= RESPONSIVE ============= */

@media (max-width:1000px) {
    .story-wrap {
        flex-direction: column-reverse;
        align-items: center;
    }
    .story-right {
        width: 100%;
    }
    .about-container {
        flex-direction: column;
        gap: 18px;
    }
    .services-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .test-grid {
        grid-template-columns: 1fr;
    }
    .contact-wrap {
        flex-direction: column;
    }
    .contact-right {
        width: 100%;
    }
    .story-image img,
    .about-image img {
        width: 100%;
    }
    .slide-content p {
        max-width: 100%;
    }
}


/* MOBILE NAV + smaller Join button */

@media (max-width:800px) {
    .nav-links {
        display: none;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(0, 0, 0, .96);
        padding: 12px 18px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
    }
    .nav-links.nav-open {
        display: flex;
    }
    .nav-links a {
        padding: 10px 4px;
        font-size: 15px;
    }
    .nav-toggle {
        display: inline-block;
    }
    .nav-cta {
        padding: 8px 14px;
        font-size: 13px;
    }
    .slides-wrapper {
        transform: none;
    }
    .slider-arrow {
        width: 44px;
        height: 44px;
    }
    .slide-content h1 {
        font-size: 28px;
    }
    .slide-content {
        padding: 18px;
        margin-bottom: 20px;
    }
    .services-row {
        grid-template-columns: 1fr;
    }
    .story-heading {
        font-size: 24px;
    }
}

@media (max-width:480px) {
    .hero-slider {
        min-height: 64vh;
    }
    .slide-content h1 {
        font-size: 22px;
    }
    .slide-content p {
        font-size: 14px;
    }
    .nav-logo {
        width: 56px;
        height: 56px;
    }
    .nav-cta {
        padding: 6px 12px;
        font-size: 12px;
    }
    /* slightly smaller medium box on very small screens */
    .service-slides {
        height: 220px;
    }
    .service-arrow {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: #111;
    padding: 12px 22px;
    font-weight: 700;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, .45);
    transition: 0.25s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.07);
    background: #1db954;
}


/* =================== CAREERS / HIRING SECTION =================== */

.careers-section {
    background: #111;
    padding: 60px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.careers-inner {
    max-width: 800px;
    margin: 0 auto;
}

.careers-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.careers-text {
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 15px;
}

.careers-contact {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
}

.careers-contact a {
    color: var(--accent);
    text-decoration: none;
}

.careers-contact a:hover {
    text-decoration: underline;
}