/* Global Pathways Site Styles */
* {
    font-family: ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    box-sizing: border-box;
}

.gps-wrapper {
    min-height: 100vh;
    background-color: #ffffff;
}



.gps-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .gps-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .gps-container {
        padding: 0 2rem;
    }
}

/* Navigation */
.gps-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.gps-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4rem;
}

.gps-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.gps-icon {
    height: 2rem;
    width: 2rem;
    color: #0d9488;
}

.gps-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
}

.gps-nav-links {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gps-nav-links {
        display: flex;
    }
}

.gps-nav-link {
    color: #475569;
    text-decoration: none;
    transition: color 0.2s;
}

.gps-nav-link:hover {
    color: #0d9488;
}

.gps-nav-link-btn {
    background-color: #0d9488;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.gps-nav-link-btn:hover {
    background-color: #0f766e;
}

/* Hero Section */
.gps-hero {
    padding-top: 6rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, #f0fdfa 0%, #dbeafe 50%, #f1f5f9 100%);
}

#layer1 {
    color:white;
}



.gps-hero-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gps-hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-hero-content {
    text-align: center;
}

@media (min-width: 1024px) {
    .gps-hero-content {
        text-align: left;
    }
}

.gps-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.gps-icon-small {
    height: 1.25rem;
    width: 1.25rem;
    color: #0d9488;
}

.gps-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .gps-hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .gps-hero-title {
        font-size: 3.75rem;
    }
}

.gps-hero-subtitle {
    font-size: 1.25rem;
    color: #475569;
    margin-bottom: 1rem;
    line-height: 1.75;
}

.gps-hero-subtext {
    font-size: 1.125rem;
    color: #334155;
    margin-bottom: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.gps-hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .gps-hero-buttons {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .gps-hero-buttons {
        justify-content: flex-start;
    }
}

.gps-btn-primary {
    background-color: #0d9488;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-align: center;
}

.gps-btn-primary:hover {
    background-color: #0f766e;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.gps-btn-secondary {
    background-color: #ffffff;
    color: #0d9488;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #0d9488;
    display: inline-block;
    text-align: center;
}

.gps-btn-secondary:hover {
    background-color: #f1f5f9;
}

.gps-hero-image-wrapper {
    position: relative;
}

.gps-hero-image {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.gps-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gps-hero-badge-float {
    position: absolute;
    bottom: -1.5rem;
    left: -1.5rem;
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    display: none;
}

@media (min-width: 1024px) {
    .gps-hero-badge-float {
        display: block;
    }
}

.gps-hero-badge-float-inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.gps-icon-badge {
    height: 2rem;
    width: 2rem;
    color: #0d9488;
}

.gps-badge-title {
    font-weight: 600;
    color: #1e293b;
}

.gps-badge-text {
    font-size: 0.875rem;
    color: #475569;
}

/* Trust Indicators */
.gps-trust {
    padding: 3rem 0;
    background-color: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.gps-trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .gps-trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gps-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gps-trust-icon {
    height: 3rem;
    width: 3rem;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.gps-trust-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.gps-trust-text {
    color: #475569;
    font-size: 0.875rem;
}

/* Mission Section */
.gps-mission {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.gps-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gps-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .gps-section-title {
        font-size: 2.25rem;
    }
}

.gps-section-line {
    width: 6rem;
    height: 0.25rem;
    background-color: #0d9488;
    margin: 0 auto;
    border-radius: 9999px;
}

.gps-section-desc {
    font-size: 1.125rem;
    color: #475569;
    margin-top: 1rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.gps-mission-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .gps-mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-mission-content {
    order: 2;
}

@media (min-width: 1024px) {
    .gps-mission-content {
        order: 1;
    }
}

.gps-mission-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

@media (min-width: 768px) {
    .gps-mission-card {
        padding: 3rem;
    }
}

.gps-mission-text {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.gps-mission-icons {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .gps-mission-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gps-mission-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
}

.gps-mission-icon {
    height: 2.5rem;
    width: 2.5rem;
    color: #0d9488;
    margin-bottom: 0.75rem;
}

.gps-mission-icon-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.gps-mission-icon-text {
    font-size: 0.875rem;
    color: #475569;
}

.gps-mission-image {
    order: 1;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

@media (min-width: 1024px) {
    .gps-mission-image {
        order: 2;
    }
}

.gps-mission-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Services Section */
.gps-services {
    padding: 5rem 0;
    background-color: #ffffff;
}

.gps-services-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gps-service-card {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .gps-service-card {
        padding: 2.5rem;
    }
}

.gps-service-teal {
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 100%);
}

.gps-service-blue {
    background: linear-gradient(135deg, #dbeafe 0%, #f1f5f9 100%);
}

.gps-service-emerald {
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdfa 100%);
}

.gps-service-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gps-service-icon-box {
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.gps-service-icon-teal {
    background-color: #0d9488;
}

.gps-service-icon-blue {
    background-color: #2563eb;
}

.gps-service-icon-emerald {
    background-color: #059669;
}

.gps-service-icon {
    height: 2rem;
    width: 2rem;
    color: #ffffff;
}

.gps-service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.gps-service-desc {
    color: #334155;
    margin-bottom: 1.5rem;
}

.gps-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.gps-service-item {
    display: flex;
    align-items: flex-start;
    color: #334155;
}

.gps-check-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #0d9488;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.gps-check-emerald {
    color: #059669;
}

.gps-service-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gps-service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-service-category-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.gps-category-icon {
    height: 1.25rem;
    width: 1.25rem;
    color: #2563eb;
    margin-right: 0.5rem;
}

.gps-service-sublist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gps-service-subitem {
    display: flex;
    align-items: flex-start;
    color: #334155;
    font-size: 0.875rem;
}

.gps-check-icon-sm {
    height: 1rem;
    width: 1rem;
    color: #2563eb;
    margin-right: 0.5rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Community Impact Section */
.gps-community {
    padding: 5rem 0;
    background: linear-gradient(135deg, #dbeafe 0%, #f0fdfa 100%);
}

.gps-community-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .gps-community-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gps-community-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.gps-community-img {
    width: 100%;
    height: 20rem;
    object-fit: cover;
    transition: transform 0.3s;
}

.gps-community-item:hover .gps-community-img {
    transform: scale(1.05);
}

.gps-community-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.gps-community-title {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.gps-community-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* How We Work Section */
.gps-how-we-work {
    padding: 5rem 0;
    background-color: #f1f5f9;
}

.gps-hww-content {
    max-width: 64rem;
    margin: 0 auto;
}

.gps-hww-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

@media (min-width: 768px) {
    .gps-hww-card {
        padding: 3rem;
    }
}

.gps-hww-text {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 2rem;
}

.gps-hww-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .gps-hww-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-hww-item {
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.gps-hww-teal {
    background-color: #f0fdfa;
}

.gps-hww-blue {
    background-color: #dbeafe;
}

.gps-hww-emerald {
    background-color: #d1fae5;
}

.gps-hww-slate {
    background-color: #f1f5f9;
    border: 2px solid #e2e8f0;
}

.gps-hww-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.75rem;
}

.gps-hww-desc {
    color: #334155;
    font-size: 0.875rem;
}

/* Case Management Section */
.gps-case-management {
    padding: 5rem 0;
    background-color: #ffffff;
}

.gps-cm-content {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.gps-cm-card {
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .gps-cm-card {
        padding: 2.5rem;
    }
}

.gps-cm-intro {
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
}

.gps-cm-comp1 {
    background: linear-gradient(135deg, #f0fdfa 0%, #dbeafe 100%);
}

.gps-cm-comp2 {
    background: linear-gradient(135deg, #dbeafe 0%, #d1fae5 100%);
}

.gps-cm-comp3 {
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdfa 100%);
}

.gps-cm-closing {
    background: linear-gradient(135deg, #f1f5f9 0%, #dbeafe 100%);
    border: 2px solid #0d9488;
}

.gps-cm-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.gps-cm-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gps-cm-icon-box {
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.gps-cm-icon-teal {
    background-color: #0d9488;
}

.gps-cm-icon-blue {
    background-color: #2563eb;
}

.gps-cm-icon-emerald {
    background-color: #059669;
}

.gps-cm-icon {
    height: 2rem;
    width: 2rem;
    color: #ffffff;
}

.gps-cm-comp-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.gps-cm-text-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.gps-cm-text {
    color: #334155;
    line-height: 1.75;
}

.gps-cm-subtitle {
    font-weight: 600;
    color: #1e293b;
}

.gps-cm-list {
    list-style: none;
    padding: 0;
    margin: 0;
    margin-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gps-cm-list-item {
    display: flex;
    align-items: flex-start;
    color: #334155;
}

.gps-cm-check {
    height: 1.25rem;
    width: 1.25rem;
    color: #0d9488;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.gps-cm-check-blue {
    color: #2563eb;
}

.gps-cm-check-emerald {
    color: #059669;
}

.gps-cm-outcomes-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .gps-cm-outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-cm-outcome {
    display: flex;
    align-items: flex-start;
}

.gps-cm-text-mt {
    margin-top: 1.5rem;
}

.gps-cm-closing-text {
    font-size: 1.125rem;
    color: #334155;
    line-height: 1.75;
    text-align: center;
}

/* Why Choose Section */
.gps-why-choose {
    padding: 5rem 0;
    background: linear-gradient(135deg, #0d9488 0%, #2563eb 100%);
    color: #ffffff;
}

.gps-why-header .gps-section-title {
    color: #ffffff;
}

.gps-why-line {
    background-color: #ffffff;
}

.gps-why-grid {
    display: grid;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .gps-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gps-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gps-why-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: background-color 0.2s;
}

.gps-why-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.gps-why-icon {
    height: 2.5rem;
    width: 2.5rem;
    margin-bottom: 1rem;
}

.gps-why-card-title {
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.gps-why-card-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

/* Contact Section */
.gps-contact {
    padding: 5rem 0;
    background-color: #ffffff;
}

.gps-contact-grid {
    display: grid;
    gap: 3rem;
    max-width: 72rem;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .gps-contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.gps-contact-form-wrapper {
    background-color: #f1f5f9;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gps-contact-form-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.gps-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.gps-form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
    margin-bottom: 0.5rem;
}

.gps-form-input,
.gps-form-select,
.gps-form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    transition: all 0.2s;
    font-size: medium;
}

.gps-form-input:focus,
.gps-form-select:focus,
.gps-form-textarea:focus {
    outline: none;
    border-color: transparent;
    box-shadow: 0 0 0 2px #0d9488;
}

.gps-form-textarea {
    resize: none;
}

.gps-form-submit {
    width: 100%;
    background-color: #0d9488;
    color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    font-size:medium;
}

.gps-form-submit:hover {
    background-color: #0f766e;
}

.gps-form-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#gps-form-message {
    margin: 1rem 0;
}

.gps-message-success {
    background-color: #d1fae5;
    border: 1px solid #34d399;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
}

.gps-message-success svg {
    height: 1.25rem;
    width: 1.25rem;
    color: #059669;
    margin-right: 0.75rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.gps-message-success p {
    color: #065f46;
    font-size: 0.875rem;
    margin: 0;
}

.gps-message-error {
    background-color: #fee2e2;
    border: 1px solid #f87171;
    border-radius: 0.5rem;
    padding: 1rem;
}

.gps-message-error p {
    color: #991b1b;
    font-size: 0.875rem;
    margin: 0;
}

.gps-contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.gps-contact-info-card {
    background: linear-gradient(135deg, #f0fdfa 0%, #dbeafe 100%);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gps-contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.gps-contact-company {
    margin-bottom: 1.5rem;
}

.gps-contact-company-name {
    font-weight: 700;
    color: #0f172a;
    font-size: 1.125rem;
}

.gps-contact-company-detail {
    color: #334155;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.gps-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.gps-contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.gps-contact-detail-icon {
    background-color: #0d9488;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.gps-contact-icon {
    height: 1.5rem;
    width: 1.5rem;
    color: #ffffff;
}

.gps-contact-detail-title {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
}

.gps-contact-detail-text {
    color: #475569;
}

.gps-contact-support-card {
    background: linear-gradient(135deg, #d1fae5 0%, #f0fdfa 100%);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.gps-contact-support-img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.gps-contact-support-content {
    padding: 2rem;
}

.gps-contact-support-icon {
    height: 3rem;
    width: 3rem;
    color: #0d9488;
    margin-bottom: 1rem;
}

.gps-contact-support-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.gps-contact-support-text {
    color: #334155;
    line-height: 1.75;
}

/* Footer */
.gps-footer {
    background-color: #0f172a;
    color: #ffffff;
    padding: 3rem 0;
}

.gps-footer-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .gps-footer-inner {
        flex-direction: row;
    }
}

.gps-footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .gps-footer-logo {
        margin-bottom: 0;
    }
}

.gps-footer-icon {
    height: 2rem;
    width: 2rem;
    color: #5eead4;
}

.gps-footer-logo-text {
    font-size: 1.25rem;
    font-weight: 600;
}

.gps-footer-info {
    text-align: center;
}

@media (min-width: 768px) {
    .gps-footer-info {
        text-align: right;
    }
}

.gps-footer-tagline {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
}

.gps-footer-copyright {
    color: #cbd5e1;
    font-size: 0.875rem;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
