:root {
    --primary: #0A66C2;
    --secondary: #00B4A6;
    --dark: #1a1a1a;
    --light-gray: #f5f7fa;
    --white: #ffffff;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

section {
    padding: 80px 0;
}

h1, h2, h3 {
    margin-bottom: 20px;
}

p {
    margin-bottom: 20px;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    margin-right: 10px;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: #084e96;
    transform: translateY(-2px);
}

.btn-secondary {
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* NAVIGATION */
nav {
    background: white;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.logo img {
    background-color: #ffffff;
    display: block;
    height: 80px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.nav-links a {
    margin-left: 25px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* HERO */
.hero {
    background: white;
    padding: 100px 0 80px;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-text > p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.hero-buttons {
    margin-bottom: 40px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    background: white;
}

.hero-image img {
    max-width: 100%;
    background: white;
}

/* TRUST SECTION */
.trust-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #e5e5e5;
}

.trust-text {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    color: #999;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
}

.trust-logo-img {
    padding: 15px 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.trust-logo-img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.trust-logo-img img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.trust-logo-img:hover img {
    opacity: 1;
}

/* SERVICES */
.services {
    background: var(--light-gray);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

.card.featured {
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border: 2px solid var(--primary);
}

.card.featured::before {
    content: "CORE SERVICE";
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.card h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    font-size: 14px;
}

.service-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
    font-size: 16px;
}

/* PROCESS */
#solutions {
    background: white;
}

#solutions h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.6;
}

/* CASE STUDIES */
.case-studies {
    background: var(--light-gray);
}

.case-studies h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.case-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.case-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-image img {
    transform: scale(1.05);
}

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 10px;
}

.case-category {
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.case-content > p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.case-results {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.result-tag {
    background: #e9f2ff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* WHY CHOOSE US */
.why-choose {
    background: white;
}

.why-choose h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.why-item {
    text-align: center;
    padding: 30px;
}

.why-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1;
}

.why-item h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 12px;
}

.why-item p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    font-size: 36px;
}

.cta p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
}

.cta .btn-primary {
    background: white;
    color: var(--primary);
}

.cta .btn-primary:hover {
    background: var(--light-gray);
}

/* FOOTER */
footer {
    background: #111;
    color: #ccc;
    padding: 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

footer h4 {
    color: white;
    margin-bottom: 15px;
}

footer a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

footer a:hover {
    color: white;
}

footer p {
    color: #ccc;
}

/* RESPONSIVE DESIGN */
@media(max-width: 768px) {
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .hero-text > p {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .nav-links {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }
    
    .nav-links a {
        margin-left: 15px;
        font-size: 14px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services h2,
    #solutions h2,
    .cta h2,
    .case-studies h2,
    .why-choose h2 {
        font-size: 28px;
    }
    
    .btn {
        display: inline-block;
        margin: 5px;
    }
    
    .service-grid,
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .card.featured::before {
        font-size: 10px;
        padding: 3px 10px;
    }
    
    .trust-logos {
        gap: 30px;
    }
    
    .trust-logo-img img {
        height: 40px;
        max-width: 150px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media(max-width: 480px) {
    .hero-text h1 {
        font-size: 26px;
    }
    
    .hero-text > p {
        font-size: 15px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .service-grid,
    .process-steps,
    .case-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .card {
        padding: 25px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .why-number {
        font-size: 36px;
    }
}


/* ABOUT PAGE STYLES */

.nav-links a.active {
    color: var(--primary);
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
}

.about-hero {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9f2ff 100%);
    padding: 100px 0 80px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* LEADERSHIP SECTION */
.leadership {
    background: white;
    padding: 80px 0;
}

.leadership h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.leader-profile {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.leader-image {
    flex: 0 0 250px;
    text-align: center;
}

.profile-pic {
    width: 250px;
    height: 250px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    background: linear-gradient(135deg, #e9f2ff 0%, #f5f7fa 100%);
    border: 3px solid var(--primary);
}

.ceo-name {
    margin-top: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.image-note {
    margin-top: 5px;
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.leader-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.leader-content {
    flex: 1;
    min-width: 300px;
}

.leader-header {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
}

.leader-header h3 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 10px;
}

.leader-company {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.leader-tenure {
    font-size: 14px;
    color: #666;
}

.leader-bio {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.leader-bio p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* EXPERIENCE SECTION */
.experience {
    background: var(--light-gray);
    padding: 80px 0;
}

.experience h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.timeline {
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: 11px;
    top: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--primary);
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.timeline-date {
    font-size: 13px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    font-size: 22px;
    color: var(--dark);
    margin-bottom: 8px;
}

.timeline-company {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.timeline-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.timeline-highlights {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.timeline-highlights li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.timeline-highlights li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.timeline-skills {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.skill-tag {
    background: #e9f2ff;
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* EXPERTISE SECTION */
.expertise {
    background: white;
    padding: 80px 0;
}

.expertise h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-card {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.expertise-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* MISSION SECTION */
.mission {
    background: linear-gradient(135deg, #f5f7fa 0%, #e9f2ff 100%);
    padding: 80px 0;
}

.mission h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.mission-content {
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement {
    font-size: 20px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 500;
}

.mission-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pillar {
    background: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.pillar h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

.pillar p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* RESPONSIVE - ABOUT PAGE */
@media(max-width: 768px) {
    .about-hero h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .leader-profile {
        flex-direction: column;
        align-items: center;
    }
    
    .leader-image {
        flex: 0 0 auto;
    }
    
    .profile-pic {
        width: 200px;
        height: 200px;
    }
    
    .leader-content {
        padding: 25px;
    }
    
    .leader-header h3 {
        font-size: 22px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 45px;
    }
    
    .timeline-marker {
        left: 1px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .timeline-content h3 {
        font-size: 18px;
    }
    
    .expertise-grid,
    .mission-pillars {
        grid-template-columns: 1fr;
    }
}


/* CONTACT PAGE */
.contact-hero {
    background: white;
    padding: 80px 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.contact-form-section {
    padding: 60px 0 100px;
    background: var(--light-gray);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: fit-content;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}

.info-item p {
    color: #666;
    margin-bottom: 5px;
}

.contact-form-container {
    background: white;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.required {
    color: #e74c3c;
}

.optional {
    color: #999;
    font-weight: 400;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-status {
    padding: 15px;
    border-radius: 6px;
    margin-top: 15px;
    display: none;
}

.form-status.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-status.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@media(max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
}


/* CAREERS PAGE */
.careers-hero {
    background: white;
    padding: 80px 0 40px;
    text-align: center;
}

.careers-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.why-join {
    padding: 80px 0;
    background: var(--light-gray);
}

.why-join h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary);
}

.open-positions {
    padding: 80px 0;
    background: white;
}

.open-positions h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.position-card {
    background: white;
    padding: 35px;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.position-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.position-header h3 {
    font-size: 24px;
    color: var(--dark);
    margin: 0;
}

.position-type {
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.position-location {
    color: #666;
    margin-bottom: 15px;
    font-size: 15px;
}

.position-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag {
    background: var(--light-gray);
    color: var(--dark);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

.no-openings {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: var(--light-gray);
    border-radius: 12px;
}

.no-openings h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--dark);
}

.no-openings p {
    font-size: 18px;
    color: #666;
    margin-bottom: 25px;
}

@media(max-width: 768px) {
    .position-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
