/* Custom styles for Insurance Calculator */

:root {
    --primary-blue: #4285f4;
    --text-dark: #2c3e50;
    --text-medium: #666;
    --bg-light: #f5f5f5;
    --card-bg: #ffffff;
    --max-content-width: 1400px;
}

body {
    font-family: Lato, Arial, sans-serif;
    background: linear-gradient(to bottom, 
        #ddd 0%, 
        #ddd 400px,
        #999 100%);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body.has-bg-image::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.5) 0%,
        rgba(255, 255, 255, 0.5) 400px,
        rgba(255, 255, 255, 1) 800px
    );
    pointer-events: none;
    z-index: -1;
}

.card {
    border-radius: 12px;
    border: none;
    background-color: var(--card-bg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-body {
    padding: 2.5rem;
}

.form-label {
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.input-group-text {
    background-color: var(--card-bg);
    border: 1px solid #e0e0e0;
    border-right: none;
    border-radius: 8px 0 0 8px;
    color: #666;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

.btn {
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
}

.btn-primary:hover {
    background-color: #3367d6;
    border-color: #3367d6;
    transform: translateY(-1px);
}

.btn-outline-primary {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.btn-outline-primary:hover {
    background-color: var(--primary-blue);
    color: white;
    transform: translateY(-1px);
}

/* Header Styles */
.navbar {
    background-color: transparent !important;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: rgba(221, 221, 221, 0.8) !important;
    padding: 0.5rem 0;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand {
    font-size: 0.9em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666 !important;
    text-decoration: none;
    font-weight: 300;
    padding: 0;
    display: inline-block;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: rotate(180deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
}

.nav-link {
    font-size: 0.9em;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666 !important;
    line-height: 30px;
    transition: color 0.2s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-link i {
    margin-right: 0.5rem;
    font-size: 1.1em;
}

.nav-link:hover {
    color: var(--primary-blue) !important;
}

/* Mobile navigation styles */
@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
    }
    
    .nav-link[href="https://mwright.com"] {
        display: none;
    }
}

h2, h3, h4 {
    color: var(--text-dark);
    font-weight: 600;
    letter-spacing: -0.3px;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.debt-entries-container, .education-entries-container, .mortgage-entries-container {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
    display: block;
    width: 100%;
}

.debt-entry, .education-entry {
    background-color: transparent;
    width: 100%;
}

.debt-entry .row,
.education-entry .row {
    margin: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.debt-entry .row > div,
.education-entry .row > div {
    padding: 0.5rem;
}

.debt-entry .form-select,
.education-entry .form-select,
.debt-entry .input-group,
.education-entry .input-group {
    margin: 0;
}

/* Override Bootstrap's default form-select padding */
.debt-entry .form-select,
.education-entry .form-select {
    padding: 0.5rem;
    height: auto;
}

/* Override Bootstrap's default input-group padding */
.debt-entry .input-group .form-control,
.education-entry .input-group .form-control,
.debt-entry .input-group .input-group-text,
.education-entry .input-group .input-group-text {
    padding: 0.5rem;
    height: auto;
}

/* Remove the separator styles */
.debt-entry:not(:last-child),
.education-entry:not(:last-child) {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Override Bootstrap's g-3 class for these specific elements */
.debt-entry .row.g-3,
.education-entry .row.g-3 {
    --bs-gutter-y: 0;
    row-gap: 0 !important;
}

/* Style the remove button container */
.debt-entry .btn-link,
.education-entry .btn-link {
    padding: 0.5rem;
}

.remove-entry {
    color: #dc3545;
    cursor: pointer;
    transition: color 0.2s;
}

.remove-entry:hover {
    color: #bd2130;
}

/* Loading spinner */
.spinner-border {
    width: 1.5rem;
    height: 1.5rem;
    border-width: 0.2em;
}

/* Tooltips */
.tooltip {
    font-size: 0.875rem;
}

/* Summary card styles */
#resultsCard {
    position: sticky;
    top: 6rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    background-color: var(--card-bg);
    margin-bottom: 2rem;
}

#itemizedList {
    font-size: 0.875rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin: 1rem -1.5rem;
    padding: 0 1.5rem 1rem;
}

#itemizedList .table {
    margin-bottom: 0;
}

#itemizedList .table td {
    padding: 0.4rem;
    border: none;
}

#itemizedList .table td:last-child {
    font-weight: 500;
    min-width: 100px;
}

.summary-cards .card {
    background-color: rgba(245, 245, 245, 0.5) !important;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.summary-cards .card:hover {
    transform: translateY(-2px);
}

.summary-cards .card-body {
    padding: 1.5rem;
}

.summary-cards h3 {
    margin-bottom: 0;
    font-weight: 700;
    color: var(--primary-blue) !important;
    font-size: 2rem;
    text-align: center;
}

.summary-cards .card-title {
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 6rem 0 3rem;
    }
    
    .hero-section h1 {
        font-size: 2.25rem;
    }
    
    #resultsCard {
        position: static;
        margin-top: 2rem;
    }
    
    .calculator-wrapper {
        padding: 0 1.5rem;
    }
    
    /* Reduce animated word min-width for tablet */
    .animated-word {
        min-width: 80px !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 5rem 0 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
    
    /* Reduce animated word min-width for mobile */
    .animated-word {
        min-width: 100px;
    }

    .nav-link {
        font-size: 0.7em !important;
    }
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 8rem 0 4rem;
    margin-bottom: 2rem;
}

/* Animated Word Styling */
.animated-word {
    color: #4285f4;
    transition: opacity 0.5s ease-in-out;
    display: inline-block;
    min-width: 125px;
    text-align: left;
}

.animated-word.fade-out {
    opacity: 0;
}

.animated-word.fade-in {
    opacity: 1;
}

.hero-section .company-name {
    font-size: 1rem;
    font-weight: 600;
    color: #666;
    margin-bottom: 0.5rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-section .page-title {
    font-size: 2.75rem;
    font-weight: 300;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    letter-spacing: 0.1em;
}

.hero-section .btn-orange {
    font-size: .9rem;
    padding: 12px 24px;
    border-width: 0;
    border-radius: 8px;
}

.hero-section .btn-orange i {
    margin-right: 0.75rem;
}

.hero-section p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* Main Content Wrapper */
.content-wrapper {
    max-width: var(--max-content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Calculator Layout */
.calculator-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-bottom: 40px;
}

/* Scroll Animation */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mb-3 {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--primary-blue);
}

.mb-3 i {
    font-size: 1.2em;
} 

.mb-3 i.bi-x {
    color: #fff;
}

.card-body .mb-4 {
    padding-bottom: 1.5em;
    border-bottom: 1px solid #eee;
}

.expand-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-width: 2px;
    transition: all 0.3s ease;
}

.expand-button i {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-right: 0.5rem;
}

.expand-button[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.collapse {
    transition: all 0.3s ease;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
}

.col-md4.debt-type-select {
    width: 25%;
}

/* Dropdown styling for long text */
.form-select {
    padding-right: 2rem !important; /* Ensure space for the dropdown arrow */
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

/* Style for selected option text */
.form-select option {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/* Custom arrow positioning */
.form-select {
    background-position: right 0.5rem center;
}

.debt-entry .form-select,
.education-entry .form-select {
    min-width: 100%;
    max-width: 100%;
}

/* Contact Button and Modal Styles */
.btn-orange {
    background-color: #ff6b00;
    border-color: #ff6b00;
    color: white;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
}

.btn-orange:hover {
    background-color: #e65c00;
    border-color: #e65c00;
    color: white;
    transform: translateY(-1px);
}

.modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.modal-header {
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.modal-header .modal-title {
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.modal-body {
    padding: 1.5rem;
}

.modal-header .btn-close {
    box-shadow: none;
}

.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

#contactForm .form-label {
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-medium);
}

#contactForm .form-control {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#contactForm .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}   

.page-subtitle {
    font-weight: normal !important;
}

.page-subtitle a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    color: var(--primary-blue);
    text-decoration: none;
}

.page-subtitle a:hover {
    color: #3367d6;
}

.page-subtitle a i {
    margin-right: 0.25rem;
}

/* Footer Styles */
.site-footer {
    background-color: #222;
    color: #999;
    padding: 60px 0;
    margin-top: 60px;
}

.site-footer h5 {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.site-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer ul li {
    margin-bottom: 0.75rem;
}

.site-footer ul li a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.site-footer ul li a:hover {
    color: #fff;
}

.site-footer .footer-description {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.site-footer a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #fff;
}

.site-footer i {
    font-size: 1.1em;
}

/* Configurator Panel Styles */
.configurator {
    position: fixed;
    top: 0;
    right: -800px;
    width: 800px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1100;
}

.configurator.open {
    right: 0;
}

.configurator-toggle {
    position: absolute;
    left: -48px;
    top: 100px;
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--primary-blue);
    transition: color 0.2s ease;
}

.configurator-toggle:hover {
    color: #3367d6;
}

.configurator-content {
    height: 100%;
    overflow-y: auto;
    padding: 2rem;
    padding-bottom: 120px;
}

.configurator-content h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.config-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.config-section:last-child {
    border-bottom: none;
    margin-bottom: 60px;
    padding-bottom: 0;
}

.config-section h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.configurator .form-label {
    font-size: 0.9rem;
    letter-spacing: normal;
    text-transform: capitalize;
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    font-weight: 500;
    display: block;
}

.configurator .mb-3 {
    margin-bottom: 1.5rem !important;
    display: block;
}

.configurator .form-control,
.configurator .form-select {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
    width: 100%;
    display: block;
}

.configurator .form-control-color {
    padding: 0.375rem;
    height: 38px;
}

.configurator .image-upload-container {
    margin-top: 0.25rem;
}

/* Address stack styles */
.address-stack {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.address-stack .form-control {
    margin-bottom: 0 !important;
}

/* Social media entry styles */
.social-media-entry {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.social-media-entry .form-select {
    flex: 1;
}

.social-media-entry .form-control {
    flex: 2;
}

.social-media-entry .remove-social {
    margin-top: 0.75rem;
}

@media (max-width: 991.98px) {
    .configurator {
        width: 100%;
        right: -100%;
    }
    
    .configurator-toggle {
        display: none; /* Hide gear icon on mobile */
    }
    
    .configurator-content .row {
        flex-direction: column;
    }
    
    .configurator-content .col-6 {
        width: 100%;
    }
}

.configurator .form-control:focus,
.configurator .form-select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.15);
}

/* Image upload container styles */
.image-upload-container {
    position: relative;
}

.image-upload-container .remove-image {
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    margin-top: -0.5rem;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
}

.configurator-actions {
    position: fixed;
    bottom: 0;
    width: 800px;
    background: white;
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    z-index: 1101;
    transform: translateX(800px);
    transition: transform 0.3s ease;
}

.configurator.open .configurator-actions {
    transform: translateX(0);
}

.configurator-actions .btn {
    min-width: 120px;
    margin: 0 auto
}

@media (max-width: 991.98px) {
    .configurator-actions {
        width: 100%;
        transform: translateX(100%);
    }
}

.configurator-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.configurator-header h3 {
    margin-bottom: 0;
}

.configurator-close {
    background: none;
    border: none;
    color: var(--text-medium);
    font-size: 1.5rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.configurator-close:hover {
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .configurator {
        width: 100%;
        right: -100%;
    }
    
    .configurator-toggle {
        display: none; /* Hide gear icon on mobile */
    }
    
    .configurator-content .row {
        flex-direction: column;
    }
    
    .configurator-content .col-6 {
        width: 100%;
    }
}

/* Contact Form Styles */
.goal-options {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-top: 0.5rem;
}

.goal-options .form-check {
    padding-left: 2rem;
}

.goal-options .form-check-input {
    margin-left: -2rem;
    width: 1.25rem;
    height: 1.25rem;
    border-color: #ccc;
    cursor: pointer;
}

.goal-options .form-check-input:checked {
    background-color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.goal-options .form-check-label {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.4;
    cursor: pointer;
    padding-top: 0.15rem;
}

.goal-options .form-check:hover .form-check-label {
    color: var(--primary-blue);
}

/* Landing Page Styles */
.landing-page {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-section-landing {
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section-landing h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-note {
    padding-top: 1rem;
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
    opacity: 0.8;
}

.hero-image {
    position: relative;
    padding: 2rem;
}

.hero-image img {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.trusted-by {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.partner-logos {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logos img {
    height: 40px;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.partner-logos img:hover {
    opacity: 1;
}

.features-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 300px;
}

.features-section .section-header h2,
.features-section .section-header p {
    color: #cccccc;
}

.features-section .editors-pick-image {
    filter: brightness(1.2) contrast(1.1);
}

#finisher-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.features-section .section-header {
    margin: 0 auto 0 !important;
}

.features-section .content-wrapper {
    position: relative;
    z-index: 2;
}

/* Remove the old animation container styles */
.animation-container {
    display: none;
}

/* Remove the wave animation styles since we're using Finisher header */
.features-section::before,
.features-section::after {
    display: none;
}

@keyframes wave {
    0% {
        background-position: 0 bottom;
    }
    100% {
        background-position: -200% bottom;
    }
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: var(--text-medium);
}

.stats-row {
    margin-top: 3rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-medium);
    margin: 0;
}

.core-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.2s;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.feature-card p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin: 0 auto;
    line-height: 1.6;
    max-width: 90%;
}

.feature-number {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-left: auto;
    margin-right: auto;
}

.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #4834d4 0%, #686de0 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.benefits-section .content-wrapper {
    position: relative;
    z-index: 2;
}

.benefits-section .section-header {
    text-align: left;
    margin: 0 0 3rem;
    max-width: none;
}

.benefits-section .section-header h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.benefits-section .row {
    position: relative;
}

.benefits-section .col-lg-6:first-child {
    padding-right: 4rem;
}

.benefits-section .col-lg-6:last-child {
    position: static;
}

.benefits-section .benefits-image {
    position: absolute;
    top: -100px;
    left: 50%;
    bottom: -100px;
    width: 60%;
}

.benefits-section .benefits-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Image Carousel Styles */
.benefits-image-carousel {
    position: absolute;
    top: -100px;
    left: 50%;
    bottom: -100px;
    width: 60%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

/* Benefit Item Highlighting */
.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
}

.benefit-item.highlighted {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
}

.benefit-item.highlighted i {
    color: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

.benefit-item.highlighted .benefit-content h4 {
    color: rgba(255, 255, 255, 1);
}

.benefit-item.highlighted .benefit-content p {
    color: rgba(255, 255, 255, 0.95);
}

.benefits-grid {
    display: grid;
    gap: 2rem;
}

.benefit-item i {
    font-size: 1.75rem;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    margin-top: 0.25rem;
    transition: all 0.3s ease;
}

.benefit-content {
    flex: 1;
}

.benefit-content h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.benefit-content p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.3s ease;
}

.testimonial {
    position: relative;
    z-index: 2;
    max-width: 50%;
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.testimonial blockquote {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    margin-top: 1rem;
    display: block;
}

@media (max-width: 991.98px) {
    .benefits-section .col-lg-6:first-child {
        padding-right: 2rem;
        padding-bottom: 400px;
    }

    .benefits-section .benefits-image-carousel {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        height: 350px;
    }

    .benefits-section .carousel-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .testimonial {
        max-width: 100%;
    }
}

.built-for-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-item {
    background: #fff;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.audience-item:hover {
    transform: translateY(-5px);
}

.audience-item i {
    display: block;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cta-section {
    padding: 100px 0;
    background: #fff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 991.98px) {
    .hero-section-landing {
        padding: 140px 0 60px;
    }
    
    .hero-section-landing h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-image {
        margin-top: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }

    .benefits-section .col-lg-6:first-child {
        padding-right: 2rem;
        padding-bottom: 50vh;
    }

    .benefits-section .benefits-image-carousel {
        position: absolute;
        top: auto;
        bottom: 0;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: 90%;
        height: 45vh;
    }

    .testimonial {
        max-width: 100%;
    }
}

@media (max-width: 767.98px) {
    .hero-section-landing h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .feature-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .testimonial blockquote {
        font-size: 1.1rem;
    }
}

/* Override any Bootstrap classes that might interfere */
.benefits-section .debt-entries-container,
.benefits-section .education-entries-container,
.benefits-section .mortgage-entries-container {
    background-color: var(--bg-light) !important;
    border-radius: 8px !important;
}

/* Ensure container has proper display */
#debtEntries, #educationEntries, #mortgageEntries {
    display: block;
    width: 100%;
}

/* Calculator Features Section */
.calculator-features-section {
    padding: 100px 0;
    background: #fff;
}

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

.calculator-features-section .features-content {
    padding-right: 2rem;
}

.calculator-features-section .row > .col-lg-8 {
    width: 50%;
}

.calculator-features-section .row > .col-lg-4 {
    width: 50%;
}

/* Sticky CTA Sidebar */
.sticky-cta-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
    padding-left: 2rem;
}

/* Help Cards Styling */
.help-card {
    border-radius: 0 !important;
    text-align: center;
}

.help-card i {
    display: block;
    margin: 0 auto 1rem auto;
}

/* CTA Card */
.cta-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cta-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-screenshot {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.cta-screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-card .btn {
    width: 100%;
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cta-benefits {
    text-align: left;
    border-top: 1px solid #e0e0e0;
    padding-top: 1.5rem;
}

.cta-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
    line-height: 1.4;
}

.cta-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1rem;
}

.cta-benefits li:last-child {
    margin-bottom: 0;
}

.calculator-features-section .lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: normal !important;
}

.calculator-features-section h4 {
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.calculator-features-section .feature-list {
    padding-left: 1.5rem;
    margin-bottom: 2rem;
}

.calculator-features-section .feature-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-medium);
}

/* Style for optional sub-steps */
.calculator-features-section .feature-list li.optional-step {
    margin-left: 2rem;
    opacity: 0.8;
    font-style: italic;
    position: relative;
}

.calculator-features-section .feature-list li.optional-step:before {
    content: "└";
    position: absolute;
    left: -1.5rem;
    color: var(--text-medium);
    opacity: 0.6;
}

.calculator-features-section .promise {
    margin-top: 2rem;
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    color: var(--text-dark);
}

@media (max-width: 991.98px) {
    .calculator-features-section .features-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }

    .sticky-cta-sidebar {
        position: static;
        padding-left: 0;
        margin-top: 2rem;
    }

    .calculator-features-section .row > .col-lg-8,
    .calculator-features-section .row > .col-lg-4 {
        width: 100%;
    }
}

/* Testimonials Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content cite {
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 600;
    font-style: normal;
    display: block;
    margin-bottom: 0.5rem;
}

.testimonial-content small {
    font-size: 0.8rem;
    color: var(--text-medium);
    display: block;
    line-height: 1.4;
}

@media (max-width: 767.98px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
}

/* Text color styles for section headings */
.hard-way {
    color: #dc3545; /* Bootstrap danger red */
}

.easy-way {
    color: #28a745; /* Bootstrap success green */
}

/* Editor's Pick Image Styling */
.editors-pick-image {
    max-width: 750px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Carousel Styling */
.hero-image-section {
    text-align: center;
    padding-left: 40px;
}

.hero-carousel-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.hero-carousel-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.carousel-content {
    position: relative;
    background: #f8f9fa;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-gif {
    max-height: 400px;
    width: auto;
    object-fit: contain;
}

.preloader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #e3e3e3;
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader p {
    color: var(--text-medium);
    font-size: 0.9rem;
    margin: 0;
}

.error-message p {
    color: #dc3545;
    font-size: 0.9rem;
    margin: 0;
}

.carousel-caption {
    position: static;
    padding: 1rem 0;
    background: none;
    color: var(--text-dark);
    text-align: center;
}

.carousel-caption h5 {
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
    color: var(--text-medium);
    letter-spacing: 0.5px;
}

.carousel-indicators {
    bottom: -70px;
}

.carousel-indicators [data-bs-target] {
    background-color: var(--primary-blue);
    border: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.5;
}

.carousel-indicators .active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: rgba(66, 133, 244, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(66, 133, 244, 1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}



@media (max-width: 991.98px) {
    .hero-image-section {
        padding-left: 0px;
        padding-top: 40px
    }
}

@media (max-width: 767.98px) {
    .hero-carousel-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .carousel-gif {
        max-height: 250px;
    }
    
    .carousel-content {
        min-height: 200px;
    }
    
    .carousel-caption {
        padding: 0.75rem 0;
    }
    
    .carousel-caption h5 {
        font-size: 0.9rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
        margin: 0 10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }
    
}

/* AI Tools Section Styling */
.ai-tools-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

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

.ai-tools-section .section-header h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.ai-tools-section .section-header p {
    font-size: 1.1rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

.ai-tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.ai-tool-logo {
    height: auto;
    max-height: 80px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    transition: all 0.3s ease;
    opacity: 0.8;
    filter: grayscale(0.2);
}

.ai-tool-logo:hover {
    transform: scale(1.1);
    opacity: 1;
    filter: grayscale(0);
}

@media (max-width: 767.98px) {
    .ai-tools-grid {
        gap: 2rem;
    }
    
    .ai-tool-logo {
        max-height: 60px;
        max-width: 120px;
    }
    
    .ai-tools-section .section-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .ai-tools-grid {
        gap: 1.5rem;
    }
    
    .ai-tool-logo {
        max-height: 50px;
        max-width: 100px;
    }
    
    .ai-tools-section .section-header h2 {
        font-size: 1.6rem;
    }
    
    .ai-tools-section .section-header p {
        font-size: 1rem;
    }
}

/* Video Section Styling */
.video-section {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 100px 0;
    color: white;
}

.video-section h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.video-section .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.video-thumbnail-container {
    position: relative;
    display: inline-block;
    cursor: pointer;
    margin-bottom: 2rem;
}

.video-thumbnail {
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.video-thumbnail:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}



.video-cta {
    margin-top: 2rem;
}

.video-cta .btn {
    font-size: 1.25rem;
    padding: 1rem 2rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.video-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

/* Video Modal Styling */
#videoModal .modal-dialog,
#copyingVideoModal .modal-dialog,
#permissionsVideoModal .modal-dialog,
#accountsVideoModal .modal-dialog {
    max-width: 95vw !important;
    width: 95vw !important;
    height: 95vh !important;
    margin: 2.5vh auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#videoModal .modal-dialog.modal-dialog-centered,
#copyingVideoModal .modal-dialog.modal-dialog-centered,
#permissionsVideoModal .modal-dialog.modal-dialog-centered,
#accountsVideoModal .modal-dialog.modal-dialog-centered {
    min-height: calc(100vh - 5vh) !important;
}

.video-modal-content {
    background-color: #000 !important;
    border: none !important;
    padding: 0 !important;
    position: relative;
    height: 100% !important;
}

#videoModal .modal-body,
#copyingVideoModal .modal-body,
#permissionsVideoModal .modal-body,
#accountsVideoModal .modal-body {
    padding: 20px !important;
    background-color: #000 !important;
    height: 100% !important;
}

#videoModal .ratio,
#copyingVideoModal .ratio,
#permissionsVideoModal .ratio,
#accountsVideoModal .ratio {
    height: 100% !important;
}

#videoModal .ratio iframe,
#copyingVideoModal .ratio iframe,
#permissionsVideoModal .ratio iframe,
#accountsVideoModal .ratio iframe {
    height: 100% !important;
    width: 100% !important;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: -10px;
    z-index: 9999;
    background-color: transparent !important;
    border: none !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

.video-modal-close:hover {
    background-color: transparent !important;
    transform: scale(1.1) !important;
    opacity: 1 !important;
    filter: brightness(0) invert(1) !important;
}

/* Confirmation Page Button Centering */
.hero-buttons-confirmation {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-buttons-confirmation .btn {
    display: inline-block;
}

/* Keep original hero-buttons for main page (left-aligned) */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.hero-buttons .btn {
    display: inline-block;
}

/* Video Thumbnail Styling for Instructions */
.video-thumbnail-small {
    transition: all 0.3s ease;
}

.video-title {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.25rem;
    text-align: center;
    margin-bottom: 1rem;
}

.video-thumbnail-wrapper {
    background-color: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.video-thumbnail-wrapper:hover {
    background-color: rgba(66, 133, 244, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.video-thumbnail-link {
    display: block;
    transition: all 0.3s ease;
}

.video-thumbnail-container {
    overflow: hidden;
    cursor: pointer;
}

.video-thumbnail-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-thumbnail-link:hover .video-thumbnail-image {
    transform: scale(1.05);
}

.video-thumbnail-link:hover .video-play-overlay {
    color: white;
    font-size: 3.5rem;
    text-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

.video-thumbnail-wrapper:hover .video-title {
    color: var(--primary-blue);
}

@media (max-width: 767.98px) {
    .editors-pick-image {
        max-width: 300px;
        margin-bottom: 1.5rem;
    }
    
    .video-section h2 {
        font-size: 2rem;
    }
    
    .video-section .lead {
        font-size: 1.1rem;
    }
    
    .video-cta .btn {
        font-size: 1.1rem;
        padding: 0.875rem 1.5rem;
    }
    
    .video-thumbnail-small {
        margin-bottom: 2rem !important;
    }
    
    .video-title {
        font-size: 1.1rem !important;
    }
    
    .video-thumbnail-wrapper {
        padding: 1rem !important;
    }
    
    .video-play-overlay {
        font-size: 2.5rem !important;
    }
    
    .video-thumbnail-link:hover .video-play-overlay {
        font-size: 3rem !important;
    }
}