/* ==========================================================================
   MALTA NURSING - PREMIUM DESIGN SYSTEM
   ========================================================================== */
:root {
    --vw-red: #E31E24;
    --vw-red-dark: #c81920;
    --vw-red-light: #fce8e8;
    --vw-black: #111111;
    --vw-dark-gray: #1f2937;
    --vw-gray: #4b5563;
    --vw-light-gray: #f9fafb;
    --vw-border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--vw-gray);
    line-height: 1.6;
}

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

.malta-section {
    padding: 100px 0;
    background: #ffffff;
}

.malta-section.bg-light {
    background: var(--vw-light-gray);
}

/* Typography */
.malta-h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vw-black);
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.malta-h1 span.text-red {
    color: var(--vw-red);
}

.malta-h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--vw-black);
    line-height: 1.2;
    margin-bottom: 16px;
}

.malta-h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--vw-black);
    margin-bottom: 12px;
}

.malta-p {
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.malta-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vw-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    display: block;
}

/* Grids */
.malta-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

/* Buttons */
.malta-btn {
    display: inline-block;
    padding: 16px 32px;
    background: var(--vw-red);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 4px;
    border: 2px solid var(--vw-red);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.malta-btn:hover {
    background: var(--vw-red-dark);
    border-color: var(--vw-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.3);
    color: #ffffff;
}

.malta-btn-full {
    width: 100%;
}

.malta-btn-outline {
    background: transparent;
    color: var(--vw-black) !important;
    border-color: var(--vw-black);
}

.malta-btn-outline:hover {
    background: var(--vw-black);
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.malta-btn-outline-blue {
    border-color: #1e40af;
    color: #1e40af !important;
}

.malta-btn-outline-blue:hover {
    background: #1e40af;
    border-color: #1e40af;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
}

.malta-btn-white {
    background: #ffffff;
    color: var(--vw-black) !important;
    border-color: #ffffff;
}

.malta-btn-white:hover {
    background: var(--vw-light-gray);
    border-color: var(--vw-light-gray);
}

.malta-btn-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.malta-btn-group-center {
    justify-content: center;
}

/* Hero Specifics */
.malta-hero {
    position: relative;
    padding: 80px 0;
    background: var(--vw-light-gray);
    overflow: hidden;
}

.malta-hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
}

.malta-hero-content {
    position: relative;
    z-index: 10;
}

.malta-hero-desc {
    max-width: 90%;
}

.malta-hero-image-wrap {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.malta-hero-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.malta-hero-image-wrap:hover img {
    transform: scale(1.05);
}

/* Floating Cards in Hero */
.malta-floating-card {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 16px 24px;
    z-index: 20;
    animation: float 6s ease-in-out infinite;
}

.malta-floating-card.card-1 {
    bottom: -20px;
    left: -20px;
}

.malta-floating-card.card-2 {
    top: 20px;
    right: -20px;
    animation-delay: -3s;
}

.malta-fc-label {
    font-size: 12px;
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
}

.malta-fc-title {
    font-weight: 800;
    font-size: 16px;
    color: #111;
}

.malta-fc-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.malta-fc-dot {
    width: 10px;
    height: 10px;
    background: var(--vw-red);
    border-radius: 50%;
}

.malta-fc-text {
    font-weight: 700;
    font-size: 14px;
    color: #111;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Trust Strip */
.malta-trust-strip {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid var(--vw-border);
}

.malta-trust-stat {
    text-align: center;
}

.malta-trust-stat .num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--vw-black);
    line-height: 1;
    margin-bottom: 8px;
}

.malta-trust-stat .label {
    font-size: 0.875rem;
    color: var(--vw-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Badges */
.malta-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: var(--vw-red-light);
    color: var(--vw-red);
    font-size: 13px;
    font-weight: 700;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    width: max-content;
}

.malta-badge-dark {
    background: var(--vw-dark-gray);
    color: #fff;
}

.malta-badge-blue {
    background: #eff6ff;
    color: #1d4ed8;
}

.malta-badge-uppercase {
    text-transform: uppercase;
}

/* Pathway Cards */
.malta-pathway-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.malta-pathway-card {
    background: #fff;
    border: 1px solid var(--vw-border);
    border-radius: 12px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.malta-pathway-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--vw-red);
}

.malta-pathway-card.featured {
    border-top: 4px solid var(--vw-red);
}

.malta-card-inner-box {
    background: var(--vw-light-gray);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

.malta-card-inner-box.box-white {
    background: #fff;
    border: 1px solid var(--vw-border);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.malta-card-inner-box.box-blue {
    background: #fff;
    border: 1px solid #dbeafe;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.malta-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vw-black);
    margin-bottom: 12px;
}

.malta-card-title.blue {
    color: #1e40af;
}

.malta-card-stats {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid var(--vw-border);
    padding-top: 12px;
}

.malta-card-stats.blue {
    border-top-color: #eff6ff;
}

.malta-stat-group {
    font-size: 0.875rem;
}

.malta-stat-group.right {
    text-align: right;
}

.malta-stat-label {
    color: #6b7280;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
}

.malta-stat-val {
    font-weight: 700;
    color: var(--vw-black);
}

.malta-card-desc {
    margin-bottom: 32px;
    flex-grow: 1;
}

.malta-card-desc strong {
    display: block;
    margin-bottom: 12px;
    font-size: 0.875rem;
}

.malta-card-desc-text {
    font-size: 0.875rem;
    color: #4b5563;
    margin-bottom: 24px;
    flex-grow: 1;
}

.malta-alert-box {
    background: #fef2f2;
    border-left: 4px solid var(--vw-red);
    padding: 16px;
    font-size: 0.875rem;
    color: #4b5563;
    border-radius: 0 4px 4px 0;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.malta-checklist li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1rem;
    color: var(--vw-gray);
}

.malta-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--vw-red);
    font-weight: bold;
    background: var(--vw-red-light);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.malta-checklist.sm li {
    font-size: 0.875rem;
}

/* Timeline Selector */
.malta-ts-header {
    text-align: center;
    margin-bottom: 80px;
}

.malta-ts-btn-wrap {
    text-align: center;
    margin-top: 48px;
}

.malta-timeline-selector {
    position: relative;
    margin-top: 60px;
}

.malta-timeline-line {
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: var(--vw-border);
    z-index: 0;
}

.malta-timeline-node {
    background: #fff;
    border: 1px solid var(--vw-border);
    border-radius: 12px;
    padding: 30px;
    position: relative;
    z-index: 10;
    transition: all 0.3s;
}

.malta-timeline-node:hover {
    border-color: var(--vw-red);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.malta-timeline-number {
    width: 64px;
    height: 64px;
    background: #fff;
    border: 2px solid var(--vw-red);
    color: var(--vw-red);
    font-size: 24px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 24px;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.1);
}

.malta-timeline-desc {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* Featured Course */
.malta-fc-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.malta-fc-content {
    padding-left: 20px;
}

.malta-fc-h2 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.malta-fc-college {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vw-gray);
    margin-bottom: 24px;
}

.malta-fc-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid var(--vw-border);
    border-bottom: 1px solid var(--vw-border);
}

.malta-fc-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--vw-gray);
    margin-bottom: 4px;
}

.malta-fc-stat-val {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vw-black);
}

.malta-fc-divider {
    width: 1px;
    background: var(--vw-border);
}

.malta-fc-who {
    margin-bottom: 8px;
}

.malta-fc-note {
    font-size: 0.875rem;
    color: var(--vw-gray);
    font-style: italic;
    margin-bottom: 32px;
}

/* Top-Up Section */
.malta-topup-box {
    background: #fff;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--vw-border);
    margin-top: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.malta-topup-h3 {
    margin-bottom: 16px;
}

.malta-topup-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
}

.malta-topup-stat-val {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--vw-black);
}

.malta-topup-info {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f3f4f6;
}

/* Work Pathway */
.malta-work-header {
    max-width: 900px;
}

.malta-work-desc {
    max-width: 800px;
    color: var(--vw-gray);
    margin-bottom: 48px;
}

.malta-work-pathway-scroll {
    display: flex;
    overflow-x: auto;
    padding: 40px 0;
    position: relative;
    scrollbar-width: thin;
    scrollbar-color: var(--vw-red) var(--vw-border);
}

.malta-work-pathway-scroll::-webkit-scrollbar {
    height: 8px;
}

.malta-work-pathway-scroll::-webkit-scrollbar-track {
    background: var(--vw-border);
}

.malta-work-pathway-scroll::-webkit-scrollbar-thumb {
    background: var(--vw-red);
    border-radius: 4px;
}

.malta-work-step {
    min-width: 200px;
    position: relative;
    z-index: 10;
    padding-right: 20px;
}

.malta-work-step-num {
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px solid var(--vw-red);
    color: var(--vw-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.malta-work-step:hover .malta-work-step-num {
    background: var(--vw-red);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}

.malta-work-step-title {
    color: var(--vw-black);
    font-weight: 700;
    font-size: 1rem;
}

.malta-work-line {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--vw-border);
    z-index: 0;
}

/* Pathway Requirements */
.malta-req-header {
    text-align: center;
    margin-bottom: 48px;
}

.malta-req-alert {
    display: inline-block;
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
}

.malta-req-card {
    background: #fff;
    border: 1px solid var(--vw-border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s;
}

.malta-req-h3 {
    margin-bottom: 32px;
}

.malta-req-group {
    margin-bottom: 24px;
}

.malta-req-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--vw-gray);
    margin-bottom: 4px;
}

.malta-req-val-lg {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vw-black);
}

.malta-req-val-sm {
    font-size: 1rem;
    font-weight: 600;
    color: var(--vw-black);
}

/* English Requirements */
.malta-eng-header {
    text-align: center;
    margin-bottom: 48px;
}

.malta-eng-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.malta-eng-card.black-top {
    border-top: 4px solid var(--vw-black);
}

.malta-eng-card.red-top {
    border-top: 4px solid var(--vw-red);
}

.malta-eng-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.malta-eng-eyebrow.black {
    color: var(--vw-black);
}

.malta-eng-eyebrow.red {
    color: var(--vw-red);
}

.malta-eng-h4 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vw-red);
    margin-bottom: 16px;
}

.malta-eng-desc {
    color: var(--vw-gray);
}

.malta-eng-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 16px;
}

.malta-eng-stat-label {
    font-size: 0.875rem;
    color: var(--vw-black);
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.malta-eng-stat-val {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--vw-black);
    margin-bottom: 4px;
}

.malta-eng-stat-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--vw-gray);
}

.malta-eng-stat-desc {
    font-weight: 600;
    color: var(--vw-gray);
}

.malta-eng-or {
    font-weight: 800;
    color: #e5e7eb;
    font-size: 1.5rem;
}

.malta-eng-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--vw-gray);
    margin-top: 32px;
    font-style: italic;
}

/* Bridging Graphic */
.malta-bridge-wrap {
    max-width: 900px;
    text-align: center;
}

.malta-bridge-h2 {
    margin-bottom: 24px;
}

.malta-bridge-time {
    font-size: 4rem;
    font-weight: 800;
    color: var(--vw-black);
    line-height: 1;
    margin-bottom: 40px;
}

.malta-bridge-graphic {
    display: flex;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.malta-bridge-theory {
    flex: 2;
    background: var(--vw-black);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.malta-bridge-practical {
    flex: 1;
    background: var(--vw-red);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.malta-bridge-label-sub {
    font-weight: 400;
    font-size: 0.875rem;
    opacity: 0.8;
}

.malta-bridge-btn-wrap {
    margin-top: 48px;
}

/* Doc Card */
.malta-doc-header {
    text-align: center;
    margin-bottom: 48px;
}

.malta-doc-card {
    background: #fff;
    border: 1px solid var(--vw-border);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.3s;
}

.malta-doc-card:hover {
    border-color: var(--vw-red);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.malta-doc-icon {
    width: 40px;
    height: 40px;
    background: var(--vw-red-light);
    color: var(--vw-red);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.malta-doc-title {
    font-weight: 700;
    color: var(--vw-black);
    font-size: 1rem;
    margin-bottom: 4px;
}

.malta-doc-desc {
    font-size: 0.875rem;
    color: var(--vw-gray);
    line-height: 1.4;
}

/* Why Visionway & Malta */
.malta-why-vw {
    margin-bottom: 96px;
}

.malta-why-header {
    text-align: center;
    margin-bottom: 48px;
}

.malta-why-col {
    padding-left: 20px;
    border-left: 2px solid var(--vw-red);
}

.malta-why-h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.malta-why-p {
    font-size: 0.875rem;
    color: var(--vw-gray);
}

.malta-why-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.malta-why-content {
    padding-left: 20px;
}

.malta-why-content-h2 {
    margin-bottom: 32px;
}

/* CTA Section */
.malta-cta-section {
    padding: 100px 0;
    background: var(--vw-light-gray);
}

.malta-cta-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: var(--vw-red);
    border-radius: 24px;
    padding: 64px 40px;
    box-shadow: 0 20px 40px rgba(227, 30, 36, 0.2);
    text-align: center;
}

.malta-cta-h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

.malta-cta-p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 1.125rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.malta-cta-btn {
    background: #ffffff;
    color: var(--vw-red) !important;
    border-color: #ffffff;
}

.malta-cta-btn:hover {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.malta-cta-btn-outline {
    background: transparent;
    color: #ffffff !important;
    border-color: #ffffff;
}

.malta-cta-btn-outline:hover {
    background: #ffffff;
    color: var(--vw-red) !important;
    border-color: #ffffff;
}

/* Forms */
.malta-form-outer {
    max-width: 1000px;
}

.malta-form-grid {
    gap: 60px;
}

.malta-form-info-h2 {
    margin-bottom: 24px;
}

.malta-form-info-p {
    margin-bottom: 32px;
}

.malta-form-li {
    font-weight: 700;
    color: var(--vw-black);
}

.malta-form-wrap {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--vw-light-gray);
}

.malta-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.malta-form-group {
    margin-bottom: 16px;
}

.malta-form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--vw-black);
    margin-bottom: 8px;
}

.malta-form-group input,
.malta-form-group select {
    width: 100%;
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    background: var(--vw-light-gray);
    font-size: 1rem;
    transition: all 0.2s;
    font-family: inherit;
}

.malta-form-group input:focus,
.malta-form-group select:focus {
    background: #fff;
    border-color: var(--vw-red);
    outline: none;
}

.malta-form-btn {
    width: 100%;
    border: none;
    cursor: pointer;
}

.malta-form-row-last {
    margin-bottom: 24px;
}

/* FAQ */
.malta-faq-wrap {
    max-width: 900px;
}

.malta-faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.malta-faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.malta-faq-item {
    border: 1px solid var(--vw-border);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.malta-faq-btn {
    width: 100%;
    text-align: left;
    padding: 24px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--vw-black);
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.malta-faq-btn:hover {
    background: var(--vw-light-gray);
}

.malta-faq-icon {
    color: var(--vw-red);
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
}

.malta-faq-content {
    padding: 0 24px 24px 24px;
    display: none;
}

.malta-faq-content.active {
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {

    .malta-grid-2,
    .malta-grid-3,
    .malta-grid-4 {
        grid-template-columns: 1fr;
    }

    .malta-form-row {
        grid-template-columns: 1fr;
    }

    .malta-h1 {
        font-size: 2.5rem;
    }

    .malta-h2 {
        font-size: 2rem;
    }

    .malta-hero-bg {
        display: none;
    }

    .malta-floating-card {
        display: none;
    }

    .malta-timeline-line {
        display: none;
    }

    .malta-work-pathway-scroll {
        flex-direction: column;
        overflow: visible;
        padding: 0;
    }

    .malta-work-step {
        display: flex;
        align-items: flex-start;
        margin-bottom: 24px;
    }

    .malta-work-step-num {
        margin-bottom: 0;
        margin-right: 20px;
    }

    .malta-work-line {
        top: 24px;
        bottom: 24px;
        left: 24px;
        width: 2px;
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 991px) {
    .malta-grid-4 {
        grid-template-columns: 1fr 1fr;
    }
}