:root {
    --brand-dark: #012632;
    --brand-darker: #001a24;
    --brand-medium: #01323f;
    --brand-primary: #03a1a6;
    --brand-primary-hover: #028a8f;
    --brand-accent: #cddcf2;
    --brand-light: #f4f8fa;
    --brand-white: #ffffff;

    --text-main: #1c2a38;
    --text-muted: #4a5c6d;
    --text-light: #cddcf2;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-radius: 8px;
    --border-radius-lg: 16px;
    --border-radius-pill: 50px;
    --container-width: 1200px;
    --shadow-sm: 0 2px 8px rgba(1, 38, 50, 0.06);
    --shadow-md: 0 8px 24px rgba(1, 38, 50, 0.09);
    --shadow-lg: 0 16px 40px rgba(1, 38, 50, 0.14);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--brand-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-dark);
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.25s ease;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    position: relative;
}

.center {
    text-align: center;
}

.section-padding {
    padding: 5.5rem 0;
}

.bg-light {
    background-color: var(--brand-light);
}

.bg-dark {
    background-color: var(--brand-dark);
    color: #ffffff;
}

.bg-dark h1, .bg-dark h2, .bg-dark h3 {
    color: var(--brand-accent);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: var(--border-radius-pill);
    background-color: rgba(3, 161, 166, 0.12);
    color: var(--brand-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.section-title {
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 780px;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.bg-dark .section-intro {
    color: rgba(205, 220, 242, 0.85);
}

/* Site Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(1, 38, 50, 0.08);
    box-shadow: var(--shadow-sm);
}

.site-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 76px;
}

.site-header-logo img {
    height: 44px;
    width: auto;
    display: block;
}

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

.site-nav-link {
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
}

.site-nav-link:hover {
    color: var(--brand-primary);
}

.site-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    gap: 5px;
}

.site-nav-toggle-bar {
    width: 24px;
    height: 2.5px;
    background-color: var(--brand-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(3, 161, 166, 0.35);
}

.btn-primary:hover {
    background-color: var(--brand-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(3, 161, 166, 0.45);
}

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

.btn-outline:hover {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, rgba(1, 38, 50, 0.92) 0%, rgba(1, 50, 63, 0.88) 100%), url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 3.5rem 0 2.8rem;
    overflow: hidden;
}

.hero-content {
    max-width: 1050px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(3, 161, 166, 0.2);
    border: 1px solid rgba(3, 161, 166, 0.4);
    color: var(--brand-accent);
    padding: 0.35rem 0.95rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.hero-title {
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    color: #ffffff;
    margin-bottom: 0.85rem;
    line-height: 1.22;
}

.hero-subtitle {
    font-size: clamp(0.98rem, 1.5vw, 1.15rem);
    color: var(--brand-accent);
    margin-bottom: 0.65rem;
    font-weight: 500;
    line-height: 1.5;
}

.hero-text {
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
    line-height: 1.55;
}

.hero-bullets {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.hero-bullet {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-pill);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    max-width: 100%;
    line-height: 1.4;
}

.hero-bullet i {
    color: var(--brand-primary);
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}

/* CTA Note Box */
.cta-note-box {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    background: rgba(3, 161, 166, 0.1);
    border-left: 4px solid var(--brand-primary);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    padding: 1rem 1.25rem;
    margin-top: 1rem;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.5;
}

.hero-section .cta-note-box {
    background: rgba(255, 255, 255, 0.08);
    border-left-color: var(--brand-primary);
    color: #ffffff;
}

.cta-note-box i {
    color: var(--brand-primary);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Check list */
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-main);
}

.check-list li i {
    color: var(--brand-primary);
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-top: 0.15rem;
}

/* Grid layout helpers */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Cards */
.card {
    background: var(--brand-white);
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
    border: 1px solid rgba(1, 38, 50, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(3, 161, 166, 0.3);
}

/* Formas de Pagamento section */
.pagamento-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--brand-primary);
}

/* Questions Box in Viajar Bem */
.questions-box {
    background: rgba(1, 38, 50, 0.03);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-bottom: 1.75rem;
    border: 1px dashed rgba(3, 161, 166, 0.3);
}

.question-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 0.75rem;
}

.question-item:last-child {
    margin-bottom: 0;
}

.question-item i {
    color: var(--brand-primary);
    width: 18px;
    height: 18px;
}

/* Pilares Section */
.pilar-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(1, 38, 50, 0.08);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pilar-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-primary);
}

.pilar-icon {
    width: 60px;
    height: 60px;
    background: rgba(3, 161, 166, 0.12);
    color: var(--brand-primary);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.pilar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--brand-dark);
}

.pilar-card p {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Destinos Section */
.destinos-group {
    margin-bottom: 3.5rem;
}

.destinos-group-title {
    font-size: 1.4rem;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(3, 161, 166, 0.2);
}

.destinos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.destinos-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
}

.destinos-grid-5 .destino-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.destinos-grid-5 .destino-img {
    height: 160px;
    width: 100%;
    object-fit: cover;
}

.destinos-grid-5 .destino-body {
    padding: 1.1rem 0.85rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

.destinos-grid-5 .destino-name {
    font-size: 0.98rem;
    font-weight: 700;
}

.destinos-grid-5 .destino-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
}

.destino-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 38, 50, 0.08);
    transition: all 0.3s ease;
}

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

.destino-img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.destino-body {
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.destino-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.destino-badge {
    background: rgba(3, 161, 166, 0.1);
    color: var(--brand-primary);
    padding: 0.35rem 0.85rem;
    border-radius: var(--border-radius-pill);
    font-size: 0.8rem;
    font-weight: 700;
}

/* Viajar Bem Section Redesign */
.viajar-bem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: stretch;
}

.viajar-bem-card {
    border-radius: var(--border-radius-lg);
    padding: 2.75rem 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

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

.desafios-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4f8fa 100%);
    border: 1px solid rgba(1, 38, 50, 0.1);
    border-top: 4px solid var(--brand-dark);
}

.solucao-card {
    background: #ffffff;
    border: 1px solid rgba(3, 161, 166, 0.2);
    border-top: 4px solid var(--brand-primary);
}

.vcard-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--brand-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.solucao-tag {
    color: var(--brand-primary);
}

.viajar-bem-card h3 {
    font-size: 1.35rem;
    color: var(--brand-dark);
    margin-bottom: 1.5rem;
    line-height: 1.35;
}

.questions-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    flex-grow: 1;
}

.question-item-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    background: #ffffff;
    padding: 0.9rem 1.15rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(1, 38, 50, 0.08);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--brand-dark);
    font-size: 0.98rem;
}

.question-item-card .q-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solucao-text {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.solucao-subtext {
    color: var(--text-main);
    font-weight: 500;
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

/* Carol Section */
.carol-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(1, 38, 50, 0.08);
}

.carol-img-wrapper {
    height: 100%;
    min-height: 440px;
    position: relative;
    overflow: hidden;
}

.carol-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 440px;
}

.carol-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
}

.carol-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carol-slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    background: rgba(1, 38, 50, 0.4);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
}

.carol-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carol-slider-dot.active {
    background: var(--brand-primary);
    width: 24px;
    border-radius: 10px;
}

.carol-body {
    padding: 3rem 2.5rem;
}

.carol-name {
    font-size: 2rem;
    color: var(--brand-dark);
    margin-bottom: 0.3rem;
}

.carol-role {
    color: var(--brand-primary);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.carol-bio {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

/* Security / Cadastur */
.security-box {
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-medium) 100%);
    border-radius: var(--border-radius-lg);
    padding: 3.5rem 3rem;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
}

.security-box h2 {
    color: #ffffff;
}

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

@media (max-width: 992px) {
    .security-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.security-text-col {
    text-align: left;
}

.security-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.security-img-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.security-seal-clean {
    width: 100%;
    max-width: 520px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease;
}

.security-seal-clean:hover {
    transform: scale(1.02);
}

/* Testimonials */
.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.depoimento-card {
    background: #ffffff;
    border-radius: var(--border-radius-lg);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1, 38, 50, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

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

.depoimento-stars {
    color: #f59e0b;
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.depoimento-text {
    font-style: italic;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
    margin-bottom: 1.75rem;
}

.depoimento-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(1, 38, 50, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--brand-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: var(--brand-dark);
    font-size: 1rem;
}

.author-city {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* FAQ */
.faq-list {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(1, 38, 50, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: all 0.25s ease;
}

.faq-item summary {
    padding: 1.4rem 1.75rem;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--brand-dark);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brand-primary);
    transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
    content: '−';
}

.faq-item[open] {
    border-color: var(--brand-primary);
    box-shadow: var(--shadow-sm);
}

.faq-answer {
    padding: 0 1.75rem 1.5rem;
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.65;
    border-top: 1px solid rgba(1, 38, 50, 0.06);
    padding-top: 1.25rem;
}

/* CTA Final */
.cta-final-box {
    background: linear-gradient(135deg, var(--brand-darker) 0%, var(--brand-dark) 100%);
    border-radius: var(--border-radius-lg);
    padding: 4.5rem 3rem;
    text-align: center;
    color: #ffffff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-final-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.cta-final-box .section-title {
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.cta-final-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 780px;
    margin: 0 auto 2.5rem;
    line-height: 1.65;
}

/* Footer */
.main-footer {
    background: var(--brand-darker);
    color: var(--brand-accent);
    padding: 3.5rem 0 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.75rem;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 2rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.footer-links a {
    color: var(--brand-accent);
}

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

.footer-copy {
    font-size: 0.88rem;
    color: rgba(205, 220, 242, 0.6);
}

/* Responsiveness */
@media (max-width: 992px) {
    .grid-2, .grid-3, .viajar-bem-grid, .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .destinos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    .destinos-grid-5 {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    .carol-img-wrapper {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .grid-3, .depoimentos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .destinos-grid, .destinos-grid-5 {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    .destinos-grid-5 .destino-img {
        height: 200px;
    }
    .destinos-grid-5 .destino-body {
        padding: 1.25rem 1.5rem;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .destinos-grid-5 .destino-name {
        font-size: 1.15rem;
    }
    .destinos-grid-5 .destino-badge {
        font-size: 0.8rem;
        padding: 0.35rem 0.85rem;
    }
    .site-nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.35s ease;
        z-index: 999;
    }
    .site-header.is-nav-open .site-nav {
        transform: translateY(0);
    }
    .site-nav-toggle {
        display: flex;
    }
    .section-padding {
        padding: 3.5rem 0;
    }
    .hero-section {
        padding: 4.5rem 0 3.5rem;
    }
    .carol-body {
        padding: 2rem 1.5rem;
    }
    .security-box, .cta-final-box {
        padding: 2.5rem 1.5rem;
    }
}
