:root {
    --primary: #01ff01;
    --primary-dark: #00d900;
    --primary-light: #66ff66;
    --navy: #1a2332;
    --navy-light: #2d3e50;
    --dark: #121212;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --success: #28a745;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-toggle {
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--gray-100);
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--navy);
    margin-bottom: 1.25rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.25rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--gray-600);
}

a {
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

section {
    padding: 100px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--white);
}

section:nth-child(odd) {
    background-color: var(--gray-100);
}

.site-header {
    background-color: var(--navy);
    color: var(--white);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.company-logo {
    height: 70px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.company-logo:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 50px;
    width: auto;
    display: block;
    margin-bottom: 20px;
}

.header-contact {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--gray-300);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.contact-item:hover {
    color: var(--primary);
}

.icon {
    margin-right: 8px;
    font-size: 1.1rem;
}

.main-nav {
    background-color: var(--navy-light);
    border-bottom: 4px solid var(--primary);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background-color: rgba(45, 62, 80, 0.95);
}

.nav-menu {
    list-style: none;
    display: flex;
    justify-content: center;
}

.nav-link {
    display: block;
    color: var(--white);
    text-decoration: none;
    padding: 20px 28px;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link.active {
    background-color: var(--primary);
    color: var(--navy);
}

.main-content {
    min-height: 60vh;
    background-color: var(--white);
}


.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary);
    color: #1a2332;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    z-index: 90;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.site-footer {
    background-color: #1a2332;
    color: #ccc;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-links,
.footer-contact,
.footer-compliance {
    list-style: none;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-contact li,
.footer-compliance li {
    margin-bottom: 8px;
}

.footer-address {
    margin-top: 15px;
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    font-size: 0.9rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--navy);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: var(--navy-light);
    color: var(--white);
    border-color: var(--navy-light);
}

.btn-secondary:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 160px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 24px;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 48px;
    color: var(--gray-200);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-signals {
    background-color: var(--white);
    padding: 60px 0;
    border-bottom: 4px solid var(--primary);
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 10;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
}

.trust-item {
    text-align: center;
    padding: 30px;
    background: var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.trust-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--success) 0%, #2ecc71 100%);
    color: var(--white);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    box-shadow: 0 4px 10px rgba(40, 167, 69, 0.3);
}

.trust-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-item p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.value-props {
    padding: 70px 0;
}

.value-props h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
}

.value-item {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    color: #1a2332;
    margin-bottom: 20px;
    font-size: 1.6rem;
    border-bottom: 3px solid var(--primary);
    padding-bottom: 10px;
}

.value-item ul {
    list-style: none;
    margin-bottom: 25px;
}

.value-item ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
}

.value-item ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 1.2rem;
}

.service-overview {
    padding: 70px 0;
}

.service-overview h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card h3 {
    color: var(--navy);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.7;
}

.service-cta {
    text-align: center;
    margin-top: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 1rem;
    font-family: inherit;
    border: 2px solid var(--gray-300);
    border-radius: var(--radius);
    background-color: var(--white);
    color: var(--gray-800);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 165, 0, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-600);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-600);
    font-style: italic;
    line-height: 1.5;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.trust-item,
.service-card,
.value-item,
.quote-form,
.contact-form,
.carrier-form {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.trust-item:nth-child(2) {
    animation-delay: 0.1s;
}

.trust-item:nth-child(3) {
    animation-delay: 0.2s;
}

.trust-item:nth-child(4) {
    animation-delay: 0.3s;
}

.form-group {
    margin-bottom: 24px;
    transition: var(--transition);
}

.form-group:focus-within {
    transform: translateX(5px);
}


.quote-form,
.contact-form,
.carrier-form {
    max-width: 860px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 60px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}


.timeline-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-step:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 19px;
    top: 50px;
    width: 2px;
    height: calc(100% - 30px);
    background-color: var(--primary);
}

.timeline-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--primary);
    color: #1a2332;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #1a2332;
}

.timeline-content p {
    color: #555;
    line-height: 1.7;
}

.faq-list,
.shipper-faq,
.carrier-faq,
.contact-faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    padding: 25px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #1a2332;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.contact-card {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.contact-card h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-detail {
    font-size: 1rem;
    color: #333;
    margin-bottom: 10px;
}

.contact-detail a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-note {
    font-size: 0.85rem;
    color: #777;
    font-style: italic;
}

.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.quick-action {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
}

.quick-action h3 {
    color: #1a2332;
    margin-bottom: 15px;
}

.quick-action p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.benefits-grid,
.requirements-list {
    max-width: 900px;
    margin: 40px auto;
}

.benefit-item,
.requirement-item {
    background-color: #fff;
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.benefit-item h3,
.requirement-item h3 {
    color: #1a2332;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-item p,
.requirement-item p {
    color: #555;
    line-height: 1.7;
}

.lanes-section {
    background-color: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 40px;
    max-width: 900px;
    margin: 40px auto;
}

.lanes-section h3 {
    color: #1a2332;
    margin-bottom: 20px;
    text-align: center;
}

.lanes-section ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.lanes-section ul li {
    padding: 12px;
    background-color: #fff;
    border-left: 3px solid var(--primary);
    color: #333;
    font-weight: 500;
}

.page-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.page-intro h1 {
    margin-bottom: 20px;
    font-size: 2.5rem;
}

.page-intro p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

@media (max-width: 768px) {
    section {
        padding: 40px 0;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .header-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .header-contact {
        flex-direction: column;
        gap: 8px;
    }

    .nav-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px 20px;
        border-bottom: 1px solid #3a4e63;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .value-item {
        padding: 30px 20px;
    }

    .service-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .quote-form,
    .contact-form,
    .carrier-form {
        padding: 30px 20px;
    }

    .timeline-step {
        gap: 15px;
    }

    .timeline-step:not(:last-child)::after {
        left: 14px;
    }

    .timeline-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quick-actions-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lanes-section {
        padding: 30px 20px;
    }

    .lanes-section ul {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 14px 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.2rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 30px 0;
    }

    .value-item,
    .service-card,
    .faq-item,
    .contact-card,
    .quick-action {
        padding: 20px 15px;
    }

    .sticky-cta {
        bottom: 15px;
        right: 15px;
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

.success-page {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.success-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 50px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
}

.success-box h1 {
    text-align: center;
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 2rem;
}

.success-message {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
}

.submission-summary {
    background-color: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-md);
}

.submission-summary h2 {
    color: var(--navy);
    margin-bottom: 30px;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
    padding-bottom: 8px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.summary-item {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--gray-100);
}

.summary-item.summary-full {
    grid-column: 1 / -1;
}

.summary-label {
    font-weight: 700;
    color: var(--navy-light);
    margin-bottom: 8px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
}

.summary-value {
    color: var(--gray-800);
    font-size: 1.1rem;
    font-weight: 500;
}


.next-steps {
    background-color: #e8f4f8;
    border-left: 4px solid var(--primary);
    padding: 25px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.next-steps h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.next-steps ul {
    list-style-position: inside;
    color: #555;
}

.next-steps li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.next-steps a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.next-steps a:hover {
    text-decoration: underline;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.contact-reminder {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #555;
}

.contact-reminder p {
    margin: 8px 0;
}

.contact-reminder a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-reminder a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .success-box {
        padding: 30px 20px;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 36px;
    }

    .success-box h1 {
        font-size: 1.5rem;
    }

    .success-message {
        font-size: 1rem;
    }

    .summary-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .success-actions {
        flex-direction: column;
    }

    .success-actions .btn {
        width: 100%;
    }
}

/* SMS Opt-in Styles */
.opt-in-group {
    margin-top: 24px;
    padding: 20px;
    background-color: var(--gray-100);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    margin-bottom: 24px;
    text-align: left;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
    /* Aligns vertically with the first line of text */
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-label {
    font-size: 0.85rem !important;
    color: var(--gray-600) !important;
    font-weight: 400 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    line-height: 1.6 !important;
    cursor: pointer;
    margin-bottom: 0 !important;
}

.opt-in-links {
    margin: 0;
    margin-left: 33px;
    font-size: 0.85rem;
    color: var(--gray-600);
}

.opt-in-links a {
    color: var(--navy);
    text-decoration: underline;
    font-weight: 600;
}

.opt-in-links a:hover {
    color: var(--primary-dark);
}