:root {
    --primary: #545cd5;
    --primary-dark: #3f46b8;
    --primary-light: #eceefe;
    --accent: #f94703;
    --accent-dark: #d93c02;
    --sky: #07b9fd;
    --ink: #1a1a2e;
    --ink-muted: #5c6370;
    --surface: #ffffff;
    --surface-soft: #f7f8fd;
    --surface-warm: #fff6f2;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --radius: 16px;
    --radius-sm: 10px;
    --font-body: 'DM Sans', system-ui, sans-serif;
    --font-display: 'Fraunces', Georgia, serif;
    --max-width: 1180px;
    --header-height: 76px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    line-height: 1.6;
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

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

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

ul {
    list-style: none;
}

.container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

.section {
    padding: 5rem 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-lead {
    color: var(--ink-muted);
    font-size: 1.0625rem;
    max-width: 42rem;
}

.section-header {
    margin-bottom: 3rem;
}

.section-header.center {
    text-align: center;
}

.section-header.center .section-lead {
    margin-inline: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: 999px;
    border: none;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 10px 24px rgba(84, 92, 213, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 14px 28px rgba(84, 92, 213, 0.36);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white;
    box-shadow: 0 10px 24px rgba(249, 71, 3, 0.28);
}

.btn-accent:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #c23400 100%);
    color: white;
    box-shadow: 0 14px 28px rgba(249, 71, 3, 0.36);
}

.btn-cta {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: white !important;
    box-shadow: 0 8px 20px rgba(249, 71, 3, 0.3);
    border: none;
}

.btn-cta:hover {
    background: linear-gradient(135deg, var(--accent-dark) 0%, #c23400 100%);
    color: white !important;
    box-shadow: 0 10px 24px rgba(249, 71, 3, 0.38);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary-dark);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.14);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
}

.btn-sm {
    padding: 0.625rem 1.125rem;
    font-size: 0.875rem;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.site-header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand img {
    height: 44px;
    width: auto;
}

.brand-text {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--accent-dark);
}

.brand .brand-text {
    display: none;
}

.site-header .nav {
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 1rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.nav a {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--ink-muted);
    transition: color 0.2s ease;
}

@media (min-width: 769px) and (max-width: 1180px) {
    .site-header .nav > a:not(.nav-flights):not(.nav-hotels):not(.nav-corporate) {
        display: none;
    }
}

.nav a:hover,
.nav a.active {
    color: var(--primary-dark);
}

.nav-flights {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--surface-warm);
    color: var(--accent-dark) !important;
    font-weight: 700 !important;
    border: 1.5px solid rgba(249, 71, 3, 0.2);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-flights:hover {
    background: var(--accent);
    color: white !important;
    border-color: var(--accent);
}

.nav-corporate {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--primary-light);
    color: var(--primary-dark) !important;
    font-weight: 700 !important;
    border: 1.5px solid rgba(84, 92, 213, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-corporate:hover {
    background: var(--primary);
    color: white !important;
    border-color: var(--primary);
}

.nav-hotels {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: #e6f6f5;
    color: #0b7a75 !important;
    font-weight: 700 !important;
    border: 1.5px solid rgba(11, 122, 117, 0.25);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.nav-hotels:hover {
    background: #0b7a75;
    color: white !important;
    border-color: #0b7a75;
}

/* Prevent navigation link styles from overriding button styles */
.nav .btn {
    font-size: 0.9375rem;
    font-weight: 700;
    white-space: nowrap;
}

.nav .btn-primary {
    color: white !important;
}

.nav .btn-primary:hover {
    color: white !important;
}

.nav .btn-cta {
    color: white !important;
}

.nav .btn-cta:hover {
    color: white !important;
}

.nav .btn-outline {
    color: var(--ink) !important;
    background: transparent !important;
}

.nav .btn-outline:hover {
    color: var(--primary-dark) !important;
    background: var(--primary-light) !important;
    border-color: var(--primary) !important;
}


.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.usp-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.usp-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.usp-card .card-icon {
    margin-bottom: 1rem;
}

.usp-card h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.5rem;
}

.usp-card p {
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.workflow-track {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    position: relative;
}

.workflow-step {
    text-align: center;
    padding: 1.25rem 0.75rem;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--border);
    position: relative;
}

.workflow-step .step-num {
    width: 36px;
    height: 36px;
    margin: 0 auto 0.75rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    font-weight: 700;
    font-size: 0.875rem;
}

.workflow-step h4 {
    font-size: 0.9375rem;
    margin-bottom: 0.35rem;
}

.workflow-step p {
    color: var(--ink-muted);
    font-size: 0.8125rem;
    line-height: 1.45;
}

.compliance-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.compliance-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--ink);
}

.compliance-badge i {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: white;
    color: var(--ink);
    font-size: 1.125rem;
    cursor: pointer;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5rem;
    background:
        radial-gradient(circle at top right, rgba(249, 71, 3, 0.1), transparent 35%),
        radial-gradient(circle at bottom left, rgba(84, 92, 213, 0.14), transparent 40%),
        linear-gradient(180deg, #f4f5fd 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}

.hero-copy p {
    color: var(--ink-muted);
    font-size: 1.125rem;
    max-width: 34rem;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    margin-bottom: 2.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    padding: 1rem 1.125rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: var(--shadow-sm);
}

.stat-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat-card span {
    color: var(--ink-muted);
    font-size: 0.8125rem;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: calc(var(--radius) + 8px);
    box-shadow: var(--shadow-lg);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.hero-badge {
    position: absolute;
    left: -1rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-radius: var(--radius-sm);
    background: white;
    box-shadow: var(--shadow-md);
}

.hero-badge i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
}

.hero-badge strong {
    display: block;
    font-size: 0.9375rem;
}

.hero-badge span {
    color: var(--ink-muted);
    font-size: 0.8125rem;
}

.trust-bar {
    padding: 1.25rem 0;
    border-block: 1px solid var(--border);
    background: white;
}

.trust-bar .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.trust-bar p {
    color: var(--ink-muted);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-items span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-items i {
    color: var(--primary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}

.card p {
    color: var(--ink-muted);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.card-link {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.875rem;
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-section img {
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    width: 100%;
    object-fit: cover;
}

.feature-list {
    display: grid;
    gap: 1.25rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--surface-warm);
    color: var(--accent-dark);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.destinations {
    background: var(--surface-soft);
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    min-height: 280px;
    color: white;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

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

.destination-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 0%, rgba(15, 23, 42, 0.78) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

.destination-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    margin-bottom: 0.375rem;
}

.destination-overlay p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
}

.testimonials {
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.testimonial-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface-soft);
}

.testimonial-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    color: var(--ink);
    font-size: 0.975rem;
    margin-bottom: 1.25rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9375rem;
}

.testimonial-author span {
    color: var(--ink-muted);
    font-size: 0.8125rem;
}

.faq-list {
    max-width: 760px;
    margin-inline: auto;
    display: grid;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: white;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.125rem 1.25rem;
    background: none;
    border: none;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    color: var(--ink);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.125rem;
    color: var(--ink-muted);
    font-size: 0.9375rem;
}

.faq-item.open .faq-answer {
    max-height: 240px;
}

.contact-section {
    background: linear-gradient(180deg, var(--surface-soft) 0%, #ecfeff 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 2rem;
    align-items: start;
}

.contact-panel {
    padding: 2rem;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-details {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.contact-details li {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    color: var(--ink-muted);
}

.contact-details i {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-light);
    color: var(--primary-dark);
    flex-shrink: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.825rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    font: inherit;
    font-size: 0.9375rem;
    background: white;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(84, 92, 213, 0.14);
}

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

.form-message {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.form-message.success {
    color: #059669;
}

.form-message.error {
    color: #dc2626;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    padding: 4rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.footer-grid h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 1.25rem;
    display: block;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    gap: 0.625rem;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease;
}

.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.55);
}

/* B2B theme — same logo palette, slightly more restrained hero */
.theme-business .hero {
    background:
        radial-gradient(circle at top right, rgba(249, 71, 3, 0.08), transparent 35%),
        radial-gradient(circle at bottom left, rgba(84, 92, 213, 0.12), transparent 40%),
        linear-gradient(180deg, #f0f1fa 0%, #ffffff 100%);
}

.theme-business .feature-icon {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.business-metrics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.metric-card {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: white;
    border: 1px solid var(--border);
    text-align: center;
}

.metric-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.375rem;
}

.metric-card span {
    color: var(--ink-muted);
    font-size: 0.875rem;
}

.cta-banner {
    margin-top: 1rem;
    padding: 2rem;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.88);
    margin-top: 0.375rem;
}

@media (max-width: 1024px) {
    .cards-grid,
    .business-metrics,
    .usp-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .workflow-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .destination-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .split-section,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: inline-grid;
        place-items: center;
    }

    .nav {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        background: white;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        display: none;
    }

    .nav.open {
        display: flex;
    }

    .nav-actions {
        flex-direction: column;
        width: 100%;
    }

    .nav-actions .btn {
        width: 100%;
    }

    .hero-stats,
    .cards-grid,
    .destination-grid,
    .testimonial-grid,
    .business-metrics,
    .usp-grid,
    .workflow-track,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar .container {
        justify-content: center;
        text-align: center;
    }

    .trust-items {
        justify-content: center;
    }

    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
    }
}
