/* --- CSS Variables & Reset --- */
:root {
    /* Color Palette */
    --brand-navy: #000223;
    --brand-navy-light: #151C62;
    --bg-white: #FFFFFF;
    --bg-light-grey: #F4F6F8;
    --text-main: #333333;
    --text-muted: #5C6A79;
    --border-color: #E2E8F0;
    
    /* Typography */
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    
    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--brand-navy);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* --- Reusable Components & Utilities --- */
.center-text { text-align: center; }
.white-text h2, .white-text p { color: var(--bg-white); }

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.2s ease-in-out;
    text-align: center;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--brand-navy);
    color: var(--bg-white);
    border: 2px solid var(--brand-navy);
}

.btn-primary:hover {
    background-color: var(--brand-navy-light);
    border-color: var(--brand-navy-light);
}

.btn-outline {
    background-color: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
}

.btn-outline:hover {
    background-color: var(--bg-light-grey);
}

.section-light-grey { background-color: var(--bg-light-grey); }
.section-navy { background-color: var(--brand-navy); color: var(--bg-white); }

.section-title {
    color: var(--brand-navy);
    font-size: 2.25rem;
    margin-bottom: var(--spacing-xl);
}

.section-navy .section-title { color: var(--bg-white); }

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: -2rem;
    margin-bottom: var(--spacing-xl);
}

/* --- Header / Navigation --- */
.site-header {
    background-color: var(--brand-navy); /* Changed to dark navy */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle light border */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white); /* Changed to white */
    letter-spacing: -0.5px;
}

.logo span { font-weight: 400; }

.main-nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: var(--spacing-lg);
}

.nav-links a {
    color: rgba(255, 255, 255, 0.85); /* Off-white for softer look */
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--bg-white); /* Pure white on hover */ }

.nav-btn { padding: 0.5rem 1.25rem; }

/* Invert the navigation button for the dark background */
.site-header .btn-primary {
    background-color: var(--bg-white);
    color: var(--brand-navy);
    border-color: var(--bg-white);
}

.site-header .btn-primary:hover {
    background-color: var(--bg-light-grey);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--bg-white); /* Changed to white */
    cursor: pointer;
}

/* --- Hero Section --- */
.hero-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
    overflow: hidden; /* Prevents horizontal scroll on large screens */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* FIX: Gives the image side more space to grow large */
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem; /* Slightly larger to match image */
    color: var(--brand-navy);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: 2rem;
}

.hero-secondary-action p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.hero-secondary-action a {
    font-weight: 700;
    color: var(--brand-navy);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.hero-secondary-action a:hover {
    text-decoration: underline;
}
.carousel {
  position: relative;
}

.carousel-img {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
}

.carousel-img.active {
  opacity: 1;
  position: relative;
}
/* --- Updated Hero Visual Layout --- */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-laptop-img {
    width: 100%;
    max-width: 850px; /* FIX: Increased max-width to make the laptop huge */
    height: auto;
    object-fit: contain;
    z-index: 1;
}

/* Floating Card Styling */
.hero-feature-card {
    position: absolute;
    left: -15%; /* FIX: Pulls the card over the text column gracefully */
    top: 50%;
    transform: translateY(-50%);
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 2.5rem 3rem; /* FIX: Scaled up padding */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    z-index: 2;
    min-width: 280px;
}

.feature-icon-wrapper {
    position: relative;
    margin-bottom: 2rem;
    display: inline-block;
}

.chart-accent {
    position: absolute;
    bottom: -6px;
    right: -12px;
    background: white;
    border-radius: 50%;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-checklist li {
    font-size: 1.15rem; /* FIX: Scaled up font */
    font-weight: 600;
    color: var(--brand-navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.hero-checklist li:last-child {
    margin-bottom: 0;
}

/* Custom Blue Checkmark */
.hero-checklist li::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 14px;
    border: solid #2D8CFF;
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg);
    margin-bottom: 4px;
}

/* Responsive Adjustments for the new Hero */
@media (max-width: 1100px) {
    .hero-feature-card {
        left: -5%;
        padding: 1.5rem 2rem;
    }
}

@media (max-width: 992px) {
    .hero-visual-wrapper {
        justify-content: center;
        margin-top: 3rem;
    }
    .hero-feature-card {
        left: 0; /* Align left on mobile */
        top: -20px; /* Float above the laptop on mobile */
        transform: translateY(0);
    }
    .hero-laptop-img {
        width: 100%;
        margin-top: 50px;
    }
}

/* Abstract visual */
.hero-visual {
    position: relative;
    height: 400px;
    width: 100%;
}

.abstract-shape {
    position: absolute;
    border-radius: 4px;
}

.shape-main {
    background-color: var(--brand-navy);
    width: 70%;
    height: 80%;
    right: 0;
    bottom: 0;
}

.shape-secondary {
    background-color: var(--bg-light-grey);
    border: 1px solid var(--border-color);
    width: 50%;
    height: 60%;
    left: 10%;
    top: 10%;
}

/* --- Core Services Section --- */
.services-section { padding: 5rem 0; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Forces exactly 2 columns */
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
    max-width: 1000px; /* Keeps the two columns from stretching too far */
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
    color: var(--brand-navy);
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--bg-light-grey);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.secondary-services {
    max-width: 800px;
    margin: 0 auto;
    padding: 1.5rem;
    background-color: rgba(11, 28, 48, 0.03);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

/* --- Who We Help Section --- */
.who-we-help-section { padding: 5rem 0; }

.help-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.help-content h2 { margin-bottom: var(--spacing-md); }
.help-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-muted);
    font-size: 1.05rem;
}

.help-list-container {
    background-color: var(--bg-light-grey);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.help-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.help-list li {
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
    color: var(--brand-navy);
}

.help-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--brand-navy-light);
    font-weight: bold;
}

/* --- Group Sites Section --- */
.group-sites-section { padding: 5rem 0; }

.group-sites-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
}

.group-card {
    background-color: var(--bg-white);
    padding: 2.5rem 2rem;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.group-card h3 {
    color: var(--brand-navy);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
}

.group-card p {
    color: var(--text-muted);
    margin-bottom: var(--spacing-lg);
    flex-grow: 1;
}

.group-card .btn-outline { width: 100%; }

/* --- Teaser Section --- */
.teaser-section {
    padding: 4rem 0;
    background-color: var(--bg-light-grey);
}

.teaser-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.teaser-box {
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.teaser-box.dark-teaser {
    background-color: var(--brand-navy);
    color: var(--bg-white);
    border-color: var(--brand-navy);
}

.teaser-box h3 { font-size: 1.5rem; margin-bottom: var(--spacing-md); }
.dark-teaser h3 { color: var(--bg-white); }

.teaser-box p { color: var(--text-muted); margin-bottom: var(--spacing-lg); }
.dark-teaser p { color: rgba(255,255,255,0.8); }

.dark-teaser .btn-primary {
    background-color: var(--bg-white);
    color: var(--brand-navy);
    border-color: var(--bg-white);
}

.dark-teaser .btn-primary:hover {
    background-color: var(--bg-light-grey);
}

/* --- Footer --- */
.site-footer {
    background-color: var(--brand-navy); /* Changed to dark navy */
    border-top: none;
    padding: 4rem 0 2rem;
    color: var(--bg-white); /* Set base text to white */
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: 3rem;
}

.footer-brand .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bg-white); /* Changed to white */
    margin-bottom: var(--spacing-sm);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7); /* Light transparent text */
    font-size: 0.9rem;
    max-width: 250px;
}

.footer-links h4, .footer-contact h4 {
    color: var(--bg-white); /* Changed to white */
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }

.footer-links a, .footer-contact p, .footer-contact a {
    color: rgba(255, 255, 255, 0.7); /* Light transparent text */
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: var(--bg-white); /* Pure white on hover */
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Subtle light border */
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5); /* Dimmer white for copyright */
    font-size: 0.85rem;
}



/* --- Responsive Design Adjustments --- */

@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr 1fr; /* Switch back to 50/50 on smaller desktops */
    }
    .hero-feature-card {
        left: -10%;
        padding: 2rem 2.5rem;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions { 
        justify-content: center; 
    }
    
    .hero-visual-wrapper {
        justify-content: center;
        margin-top: 4rem;
    }
    
    .hero-feature-card {
        left: 5%; 
        top: -30px; 
        transform: translateY(0);
    }
    
    .hero-laptop-img {
        width: 100%;
        margin-top: 40px;
    }
    
    .help-grid { grid-template-columns: 1fr; gap: 2rem; }
    .teaser-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
    .header-container { position: relative; }

    .mobile-menu-btn { display: block; }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.5rem;
        gap: 0;
        background-color: var(--brand-navy);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .site-header.mobile-menu-open .main-nav { display: flex; }

    .nav-links, .nav-btn { display: none; }

    .site-header.mobile-menu-open .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .site-header.mobile-menu-open .nav-btn {
        display: inline-block;
        width: 100%;
        text-align: center;
        margin-top: 1rem;
    }

    .nav-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .nav-links a { display: block; padding: 0.875rem 0; }

    .hero-content h1 { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .help-list { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Get In Touch Section (Image Replica) --- */
.get-in-touch-section {
    background-color: #020630; /* Dark slate background from image */
    padding: 4rem 0 6rem;
    min-height: 100vh;
}

.git-container {
    max-width: 1200px;
    margin: 0 auto;
}

.git-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

/* 3-Column Wrapper */
.git-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background-color: #FFFFFF;
    border-radius: 2px;
    overflow: hidden; /* Ensures map and colors don't break borders */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Base Column Styling */
.git-col {
    display: flex;
    flex-direction: column;
}

/* --- Column 1: Form --- */
.git-form-col {
    background-color: #FFFFFF;
    padding: 3rem 2.5rem;
}

.git-form-group {
    margin-bottom: 2rem;
}

.git-label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 1rem;
}

/* Underline-only Inputs */
.git-form input[type="email"],
.git-form input[type="tel"],
.git-form input[type="date"],
.git-form input[type="time"],
.git-form input[type="text"],
.git-form textarea {
    width: 100%;
    padding: 0.5rem 0;
    border: none;
    border-bottom: 1px solid #777; /* Sharp underline */
    background: transparent;
    font-size: 0.95rem;
    color: #333;
    transition: border-bottom-color 0.3s;
}

.git-form input:focus,
.git-form textarea:focus {
    outline: none;
    border-bottom: 2px solid #32424E;
}

.git-form textarea {
    resize: none;
    margin-top: 1rem;
}

/* CAPTCHA Row */
.git-captcha-row {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

.git-captcha-code {
    background-color: #E89A00; /* Orange block */
    color: #000000;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0.5rem 1rem;
    letter-spacing: 2px;
}

/* Schedule Button */
.git-submit-btn {
    width: 100%;
    background-color: transparent;
    color: var(--brand-navy);
    border: 2px solid var(--brand-navy);
    padding: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.git-submit-btn:hover {
    background-color: var(--bg-light-grey);
}

/* --- Column 2: Info Block --- */
.git-info-col {
    background-color: #8BA0B0; /* Light blue/grey from image */
    padding: 3rem 2rem;
    text-align: center;
    justify-content: space-around;
}

.git-info-block {
    margin-bottom: 2rem;
}

.git-info-block:last-child {
    margin-bottom: 0;
}

.git-icon {
    width: 32px;
    height: 32px;
    color: #32424E; /* Dark icons */
    margin-bottom: 0.75rem;
}

.git-info-block h3 {
    color: #32424E;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.git-info-block p {
    color: #32424E;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
}

/* --- Column 3: Map --- */
.git-map-col {
    min-height: 400px; /* Ensures map has height on mobile */
    padding: 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .git-wrapper {
        grid-template-columns: 1fr 1fr; /* Form and Info side-by-side, map below */
    }
    .git-map-col {
        grid-column: 1 / -1; /* Make map full width below */
        height: 350px;
    }
}

@media (max-width: 768px) {
    .git-wrapper {
        grid-template-columns: 1fr; /* Stack everything vertically on mobile */
    }
    .git-title {
        text-align: center;
    }
}

/* --- Careers Section --- */
.careers-section {
    padding: 5rem 0;
}

.jobs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.job-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--bg-light-grey);
    padding-bottom: 1rem;
}

.job-header h3 {
    color: var(--brand-navy);
    font-size: 1.5rem;
    margin: 0;
}

.job-type {
    background-color: var(--bg-light-grey);
    color: var(--brand-navy);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.job-body {
    flex-grow: 1; /* Pushes the apply button to the bottom */
    margin-bottom: 2rem;
}

.job-intro {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-body h4 {
    color: var(--brand-navy);
    font-size: 1rem;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.job-body ul {
    list-style-type: none;
    padding-left: 0;
}

.job-body li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.job-body li::before {
    content: "•";
    color: var(--brand-navy-light);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.job-card .btn-outline {
    width: 100%;
    text-align: center;
}

/* --- Careers Application Section --- */
.application-section {
    padding: 5rem 0;
}

.application-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
}

/* Left Column: Form Styling */
.app-form-container {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.app-form-container h2 {
    color: var(--brand-navy);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.app-form-intro {
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.app-form-intro a {
    color: var(--brand-navy);
    font-weight: 600;
    text-decoration: underline;
}

.app-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.app-form-group {
    margin-bottom: 1.5rem;
}

.app-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--brand-navy);
    font-size: 0.95rem;
}

/* Block-level inputs with padding */
.app-form input[type="text"],
.app-form input[type="tel"],
.app-form input[type="email"],
.app-form select,
.app-form textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 1rem;
    color: var(--text-main);
    background-color: var(--bg-white);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.app-form input:focus,
.app-form select:focus,
.app-form textarea:focus {
    outline: none;
    border-color: var(--brand-navy);
    box-shadow: 0 0 0 3px rgba(11, 28, 48, 0.1);
}

.app-form textarea {
    resize: vertical;
}

.app-submit-btn {
    width: 100%;
    margin-top: 1rem;
    font-size: 1.05rem;
}

/* Right Column: Details & Map */
.app-details-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.app-info-box {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.app-info-box h2 {
    color: var(--brand-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.app-info-desc {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.app-info-item {
    margin-bottom: 1.25rem;
}

.app-info-item:last-child {
    margin-bottom: 0;
}

.app-info-item strong {
    display: block;
    color: var(--brand-navy);
    margin-bottom: 0.25rem;
}

.app-info-item p {
    color: var(--text-muted);
}

.app-map-placeholder {
    width: 100%;
    height: 420px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* --- Mobile Adjustments --- */
@media (max-width: 992px) {
    .application-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .app-details-container {
        order: 2; /* Forces map to bottom on mobile */
    }
}

@media (max-width: 600px) {
    .app-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .app-form-container {
        padding: 2rem 1.5rem;
    }
}

/* --- Mobile Adjustments for Careers --- */
@media (max-width: 992px) {
    .jobs-grid {
        grid-template-columns: 1fr;
    }
}

.custom-padding{
    padding-top: 40px;
    padding-bottom: 40px;
}