/* Global Synergy Partners - Main Stylesheet */

:root {
    --gsp-red: #C41E3A;
    --gsp-red-dark: #9A1830;
    --gsp-red-light: #E02E4C;
    --gsp-gray: #4A4A4A;
    --gsp-gray-light: #6B6B6B;
    --gsp-gray-dark: #2D2D2D;
    --white: #FFFFFF;
    --off-white: #F8F8F8;
    --light-gray: #E8E8E8;
    --border-gray: #DDDDDD;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gsp-gray);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gsp-gray-dark);
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background: var(--gsp-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--gsp-red);
    border: 2px solid var(--gsp-red);
}

.btn-outline:hover {
    background: var(--gsp-red);
    color: var(--white);
}

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}


/* Header */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
}

.logo img {
    height: 85px;
    width: auto;
}


/* Navigation */

.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: 16px;
    font-weight: 500;
    color: var(--gsp-gray);
    transition: color 0.3s ease;
    border-radius: 4px;
}

.nav-link:hover {
    color: var(--gsp-red);
    background: rgba(196, 30, 58, 0.05);
}

.nav-link.active {
    color: var(--gsp-red);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-arrow {
    transform: rotate(180deg);
}


/* Dropdown Menu */

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--gsp-gray);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    color: var(--gsp-red);
    background: rgba(196, 30, 58, 0.05);
}

.dropdown-item.active {
    color: var(--gsp-red);
    background: rgba(196, 30, 58, 0.08);
}


/* Mobile Menu */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--gsp-gray);
    transition: all 0.3s ease;
}


/* Page Header */

.page-header {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--gsp-gray-dark) 0%, var(--gsp-gray) 100%);
    color: var(--white);
    text-align: center;
}

.page-header h1 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
    color: var(--gsp-red-light);
}


/* Section Styles */

.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    color: var(--gsp-red);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(26px, 4vw, 36px);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--gsp-gray-light);
}


/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    padding-top: 90px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/hero-healthcare.jpg') center/cover;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    padding: 40px 0;
}

.hero-tag {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--gsp-red);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: clamp(34px, 5vw, 52px);
    margin-bottom: 18px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gsp-red);
}

.hero p {
    font-size: 16px;
    color: var(--gsp-gray-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}


/* Stats Bar */

.stats-bar {
    background: var(--gsp-gray-dark);
    padding: 50px 0;
    position: relative;
    z-index: 3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 40px;
    color: var(--gsp-red);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* About Section */

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--gsp-red);
    border-radius: 8px;
    z-index: -1;
}

.about-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.about-content p {
    color: var(--gsp-gray-light);
    margin-bottom: 18px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-icon {
    width: 42px;
    height: 42px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gsp-red);
}

.about-feature h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 12px;
    color: var(--gsp-gray-light);
    margin: 0;
}


/* Services Grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 28px;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gsp-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.service-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 14px;
    color: var(--gsp-gray-light);
    line-height: 1.7;
}


/* Process Steps */

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 35px;
    right: -30px;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gsp-red), transparent);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gsp-red);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -8px;
    border: 2px dashed var(--gsp-red);
    border-radius: 50%;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 17px;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 13px;
    color: var(--gsp-gray-light);
    line-height: 1.6;
}


/* CTA Section */

.cta-section {
    background: linear-gradient(135deg, var(--gsp-gray-dark) 0%, var(--gsp-gray) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--gsp-red);
    border-radius: 50%;
    opacity: 0.08;
}

.cta-section h2 {
    font-size: clamp(26px, 4vw, 36px);
    color: var(--white);
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}


/* Contact Grid */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--gsp-gray-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-item-icon {
    width: 45px;
    height: 45px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--gsp-red);
}

.contact-item div h4 {
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item div p {
    font-size: 14px;
    color: var(--gsp-gray-light);
    margin: 0;
}

.contact-form {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--gsp-gray-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--light-gray);
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gsp-red);
    box-shadow: 0 0 0 3px rgba(196, 30, 58, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* Blog Grid */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

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

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 12px;
    color: var(--gsp-gray-light);
}

.blog-content h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3 a:hover {
    color: var(--gsp-red);
}

.blog-content p {
    font-size: 13px;
    color: var(--gsp-gray-light);
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 15px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gsp-red);
}

.read-more:hover {
    gap: 10px;
}


/* Partners Grid */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.partner-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

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

.partner-logo {
    width: 70px;
    height: 70px;
    background: var(--off-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.partner-logo svg {
    width: 32px;
    height: 32px;
    stroke: var(--gsp-gray-light);
}

.partner-card h4 {
    font-size: 15px;
    margin-bottom: 5px;
}

.partner-card p {
    font-size: 12px;
    color: var(--gsp-gray-light);
}


/* Career Section */

.career-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.career-item {
    background: var(--white);
    border-radius: 10px;
    padding: 25px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.career-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-info h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.career-meta {
    display: flex;
    gap: 20px;
    font-size: 13px;
    color: var(--gsp-gray-light);
}

.career-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}


/* Footer */

.footer {
    background: var(--gsp-gray-dark);
    color: var(--white);
    padding: 60px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 80px;
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 280px;
}

.footer-column h4 {
    font-size: 13px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--gsp-red);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gsp-red);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 16px;
    height: 16px;
    stroke: var(--white);
}


/* Content Page Styles */

.content-section {
    padding: 60px 0;
}

.content-section.bg-light {
    background: var(--off-white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-grid.reverse .content-image {
    order: 2;
}

.content-grid.reverse .content-text {
    order: 1;
}

.content-image img {
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.content-text h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.content-text p {
    color: var(--gsp-gray-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-list {
    list-style: none;
    margin-top: 20px;
}

.content-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--gsp-gray);
}

.content-list li svg {
    width: 20px;
    height: 20px;
    stroke: var(--gsp-red);
    flex-shrink: 0;
    margin-top: 2px;
}


/* Feature Cards */

.feature-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(196, 30, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.feature-card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gsp-red);
}

.feature-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 13px;
    color: var(--gsp-gray-light);
    line-height: 1.6;
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero .hero-content {
    width: 50%;
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 60px 0;
    float: left;
}


/* Responsive */

@media (max-width: 992px) {
    .hero::before {
        display: none;
    }
    .hero .hero-content {
        width: 100%;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-grid,
    .contact-grid,
    .content-grid {
        grid-template-columns: 1fr;
    }
    .about-image,
    .content-image {
        order: -1;
    }
    .content-grid.reverse .content-image,
    .content-grid.reverse .content-text {
        order: unset;
    }
    .services-grid,
    .blog-grid,
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step:not(:last-child)::after,
    .process-step:nth-child(2)::after {
        display: none;
    }
    .feature-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    .nav.active {
        display: flex;
    }
    .nav-item {
        width: 100%;
    }
    .nav-link {
        padding: 12px 0;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }
    .nav-item.active .dropdown-menu {
        display: block;
    }
    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .page-header {
        padding: 120px 0 40px;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .services-grid,
    .blog-grid,
    .partners-grid,
    .feature-cards {
        grid-template-columns: 1fr;
    }
    .process-steps {
        grid-template-columns: 1fr;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .career-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .career-meta {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    .social-links {
        justify-content: center;
    }
}