/* Collapsible Header Styling */
.info-section {
    margin: 0; /* Remove extra spacing between sections */
    padding: 0; /* Ensure no internal padding within sections */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle divider between sections */
}

.info-section:last-child {
    border-bottom: none; /* Remove border from the last section */
}

.info-section h2 {
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 1rem; /* Consistent padding for each header */
    background-color: transparent; /* Keep background clean */
}

.info-section h2 .toggle-symbol {
    font-size: 1.5rem;
    color: #ffcc00;
    display: inline-block;
    width: 1.5rem;
    text-align: center;
}

.info-section h2 .toggle-symbol.expanded {
    color: #ff4500; /* Change to red when expanded */
}

.info-section .content {
    color: #ffffff;
    overflow: hidden;
    height: 0;
    opacity: 0;
    padding: 0 1rem;
    transition: height 0.3s ease, opacity 0.3s ease;
}

.info-section .content.expanded {
    height: auto;
    opacity: 1;
    padding: 1rem;
}

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.subscribe-btn {
    background-color: #ffcc00;
    color: #333;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.subscribe-btn:hover {
    background-color: #e6b800;
    color: #000;
}

/* Header and Navigation */
.header-container {
    background-color: #152878;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    width: 100%;
    height: 150px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 150px;
    padding: 0 24px;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-link {
    flex-shrink: 0; /* Prevent logo from shrinking */
}

.site-logo {
    height: 150px;
    width: auto;
    padding: 10px;
    margin-top: 50px;
    display: block;
    object-fit: contain;
}

.site-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.logo-link:hover .site-logo::after {
    opacity: 1;
}

/* Main Navigation */
.menu {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
    list-style-type: disc;
}

.menu.active {
    display: block;
}

.menu-item {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Main menu items in header */
.menu-item > a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}

/* Dropdown menu styling */
.dropdown-content {
    background-color: #ffffff;
}

.dropdown-content a,
.menu-title h3,
.menu-title p,
.feature-text {
    color: #1c1d1f;
}

.menu-title p {
    color: #6a6f73;
}

.dropdown-content a:hover {
    background-color: #f8f9fb;
}

/* Dropdown arrow in white */
.menu-item.has-dropdown > a::after {
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
}

/* Action Buttons */
.menu-actions {
    display: flex;
    gap: 6px;
    margin-left: auto;
}

.login-button {
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 4px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: transparent;
}

.get-started-button {
    padding: 6px 10px;
    font-size: 13px;
    white-space: nowrap;
    border-radius: 4px;
    color: white;
    background-color: #2196f3;
    border: none;
}

/* Mega Menu */
.dropdown-content {
    display: none;
    padding-left: 16px;
    background: #152878;
    margin: 8px 0;
}

.menu-item.active .dropdown-content {
    display: block;
}

.mega-menu-container {
    background-color: #152878;
    max-width: 1400px;
    margin: 0 auto;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.menu-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 1024px) {
    .mega-menu-container {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        width: 720px;
        background: #152878;
        border: 1px solid var(--border-light);
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        padding: 24px;
    }

    .menu-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, auto);
        gap: 16px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        padding: 12px;
        gap: 12px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }

    .feature-icon {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
    }

    .feature-text {
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
    }

    .dropdown-content {
        padding-top: 12px;
        margin-top: -12px;
    }

    .menu-item.has-dropdown > a {
        padding-bottom: 20px;
        margin-bottom: -20px;
    }

    .dropdown-content::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: transparent;
    }
}

@media (min-width: 1200px) {
    .mega-menu-container {
        width: 800px;
    }
}

/* Button Styles */
.button-primary, 
.button-secondary,
.subscribe-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
    white-space: nowrap;
}

.button-primary {
    background-color: var(--button-primary);
    color: white;
}

.button-primary:hover {
    background-color: var(--button-primary-hover);
    color: white;
}

.button-secondary {
    background-color: var(--button-secondary);
    color: var(--text-primary);
}

.button-secondary:hover {
    background-color: var(--button-secondary-hover);
}

/* Hero Section Layout */
.hero-section {
    position: relative;
    z-index: 1;
    background-color: var(--background-light);
    padding: 120px 0 80px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
}

/* Remove any remaining gold/yellow colors */
.subscribe-btn {
    background-color: var(--button-primary);
    color: white;
}

.subscribe-btn:hover {
    background-color: var(--button-primary-hover);
}

/* Ensure text is always visible */
.hero-section .container {
    position: relative;
    z-index: 2;
    background-color: transparent;
}

.hero-section h1,
.hero-section p {
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

/* Fix any overlapping issues */
.content {
    position: relative;
    z-index: 1;
}

.button-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    background-color: var(--button-primary);
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.button-link:hover {
    background-color: var(--button-primary-hover);
    color: white;
}

/* Mobile menu button */
.menu-toggle {
    display: none; /* Hide by default, show on mobile */
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* Tablet breakpoint */
@media (min-width: 768px) {
    .nav-wrapper {
        padding: 0 20px;
    }

    .site-logo {
        font-size: 1.4rem;
    }

    .menu-actions {
        gap: 8px;
    }

    .login-button,
    .get-started-button {
        padding: 8px 12px;
        font-size: 14px;
    }
}

/* Desktop breakpoint */
@media (min-width: 1024px) {
    .nav-wrapper {
        height: var(--header-height);
        padding: 0 32px;
        gap: 48px;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .site-logo {
        font-size: 1.5rem;
    }

    .menu {
        display: flex;
        position: static;
        padding: 0;
        border: none;
        box-shadow: none;
        gap: 32px;
    }

    .menu-actions {
        gap: 16px;
        margin-left: 32px;
    }

    .login-button,
    .get-started-button {
        padding: 8px 20px;
        font-size: 15px;
    }

    /* Desktop Dropdown Styling */
    .dropdown-content {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 240px;
        background: #152878;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        box-shadow: var(--shadow-md);
        padding: 8px 0;
        margin: 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.2s ease;
    }

    .menu-item.has-dropdown:hover .dropdown-content {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-content a {
        padding: 8px 16px;
        color: var(--text-primary);
        display: block;
        font-size: 14px;
        transition: background-color 0.2s ease;
    }

    .dropdown-content a:hover {
        background-color: var(--background-light);
        color: var(--accent-blue);
    }

    /* Mega Menu Container */
    .mega-menu-container {
        min-width: 800px;
        padding: 32px;
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
    }

    .menu-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        max-width: var(--container-width);
        margin: 0 auto;
    }

    .dropdown-content {
        padding-top: 20px;
        margin-top: -20px;
    }

    .menu-item.has-dropdown:hover .dropdown-content,
    .dropdown-content:hover {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .feature-item {
        padding: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 4px;
        transition: background-color 0.2s ease;
    }

    .feature-item:hover {
        background-color: var(--background-light);
    }
}

/* Mobile Dropdown Styling */
@media (max-width: 1023px) {
    .dropdown-content {
        display: none;
        padding-left: 16px;
        background: var(--background-light);
        margin: 8px 0;
    }

    .menu-item.active .dropdown-content {
        display: block;
    }

    .menu-features {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .feature-item {
        padding: 8px 12px;
    }
}

/* Extra safety for very small screens */
@media (max-width: 360px) {
    .nav-wrapper {
        padding: 0 8px;
    }

    .site-logo {
        font-size: 1.1rem;
    }

    .login-button,
    .get-started-button {
        padding: 6px 8px;
        font-size: 12px;
    }
}

/* Engagement Prompt Styling */
.engagement-prompt {
    position: fixed;
    bottom: -100%;
    right: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    width: 300px;
    transition: bottom 0.3s ease;
    z-index: 1000;
}

.engagement-prompt.show {
    bottom: 30px;
}

.engagement-content {
    padding: 20px;
}

.close-prompt {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-secondary);
}

.engagement-form {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.engagement-form input {
    flex: 1;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 4px;
}

.engagement-form button {
    background: var(--accent-blue);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
}

@media (min-width: 1024px) {
    /* Create hover area between menu item and dropdown */
    .menu-item.has-dropdown {
        position: relative;
    }

    .menu-item.has-dropdown > a {
        padding-bottom: 24px; /* Extend hover area below menu item */
        margin-bottom: -24px; /* Offset padding to maintain visual position */
    }

    .dropdown-content {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(8px);
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s ease, visibility 0s linear 0.2s;
        padding-top: 12px; /* Space for hover area */
    }

    /* Show dropdown on hover */
    .menu-item.has-dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        transition-delay: 0s; /* Remove delay when showing */
    }

    /* Keep dropdown visible when hovering over it */
    .dropdown-content:hover {
        opacity: 1;
        visibility: visible;
    }

    /* Mega menu positioning */
    .mega-menu-container {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        min-width: 800px;
        background: var(--background-white);
        border: 1px solid var(--border-light);
        border-radius: 4px;
        box-shadow: var(--shadow-md);
        padding: 24px;
    }

    /* Add invisible area to prevent gaps */
    .dropdown-content::before {
        content: '';
        position: absolute;
        top: -24px; /* Match padding-bottom of menu item */
        left: 0;
        right: 0;
        height: 24px;
        background: transparent;
    }
}

@media (min-width: 1200px) {
    .mega-menu-container {
        min-width: 1000px;
        max-width: 1200px;
        padding: 32px 48px;
    }

    .menu-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

/* Extra wide screens */
@media (min-width: 1920px) {
    .mega-menu-container {
        min-width: 1200px;
        max-width: 1400px;
    }
}

/* Mega Menu Styling */
.dropdown-content {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: #152878;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.mega-menu-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 48px 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.menu-section {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.menu-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-decoration: none;
    cursor: pointer;
    color: #1c1d1f;
}

.menu-title:hover {
    background: var(--background-light);
    transform: translateY(-2px);
}

.menu-title h3 {
    color: #152878;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.menu-title p {
    color: #152878;
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 8px;
}

.feature-text {
    color: #ffffff;
}

/* Hover behavior */
.menu-item.has-dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Wider screens */
@media (min-width: 1200px) {
    .mega-menu-container {
        padding: 48px 64px;
    }
}

/* Add to existing mega-menu styles */
.resources-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.resources-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Update existing menu-title styles */
.menu-title {
    display: flex;
    flex-direction: column;
    padding: 16px;
    border-radius: 8px;
    transition: background-color 0.2s ease;
    text-decoration: none;
    color: var(--text-primary);
}

.menu-title:hover {
    background: var(--background-light);
}

.menu-title .feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.menu-title h3 {
    font-size: 16px;
    margin: 0 0 8px;
}

.menu-title p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.subscribe-btn {
    padding: 8px 16px;
    background-color: var(--accent-blue);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.subscribe-btn:hover {
    background-color: var(--accent-blue-dark);
}

/* Update mega menu colors */
.dropdown-content {
    background-color: #152878;
}

.menu-title {
    color: #ffffff;
}


.menu-title p {
    color: rgb(21 40 120);
}


.feature-text {
    color: #ffffff;
}

.dropdown-content a {
    color: #ffffff !important;
}

.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Ensure all menu lists have no bullets */
.menu, 
.menu ul,
.dropdown-content ul {
    list-style-type: none;
}

/* Define a new mobile-friendly media query section specifically for the header */
@media (max-width: 768px) {
    .header-container {
        height: 70px;
    }
    
    .nav-wrapper {
        height: 70px;
        padding: 0 16px;
    }
    
    .site-logo {
        height: 65px; /* Header height (70px) minus 5px */
        margin-top: 0;
        padding: 0;
    }
    
    .menu-toggle {
        display: block;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
        padding: 8px;
    }
    
    .menu-toggle svg {
        width: 28px;
        height: 28px;
    }
    
    nav[role="navigation"] {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #152878;
        padding: 16px;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        z-index: 1000;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }
    
    nav[role="navigation"].active {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .menu {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        padding: 16px 0;
    }
    
    .menu-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .menu-item:last-child {
        border-bottom: none;
    }
    
    .menu-item > a {
        display: block;
        padding: 16px 0;
        font-size: 18px;
        font-weight: 600;
    }
    
    /* Fix dropdown behavior */
    .dropdown-content {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
        margin: 0;
        padding: 0 0 16px 16px;
        background-color: rgba(255, 255, 255, 0.05);
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 0;
    }
    
    .menu-section {
        padding: 16px 0;
    }
    
    .menu-title {
        padding: 10px 0;
    }
    
    /* Improve mobile buttons */
    .menu-actions {
        position: fixed;
        bottom: 16px;
        left: 16px;
        right: 16px;
        display: flex;
        justify-content: space-between;
        gap: 12px;
        background: #152878;
        padding: 16px;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        z-index: 1002;
    }
    
    .login-button, 
    .get-started-button {
        flex: 1;
        text-align: center;
        padding: 12px 16px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 6px;
    }
    
    .get-started-button {
        background: linear-gradient(135deg, #38b6ff, #2671e1);
    }
}

@media (max-width: 480px) {
    .header-container {
        height: 60px;
    }
    
    .nav-wrapper {
        height: 60px;
    }
    
    .site-logo {
        height: 55px; /* Header height (60px) minus 5px */
    }
    
    nav[role="navigation"] {
        top: 60px;
    }
    
    nav[role="navigation"].active {
        height: calc(100vh - 60px);
    }
    
    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }
}

/* Add JavaScript to components.js to toggle the menu */

/* Endorsements Section */
.endorsements-section {
    padding: 80px 0;
    background-color: var(--background-light, #f8f9fa);
    position: relative;
}

.endorsements-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-text, #1c1d1f);
    margin-bottom: 48px;
    letter-spacing: -0.5px;
}

.endorsements-carousel {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.endorsement-slides {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--background-white, #ffffff);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    min-height: 400px;
}

.endorsement-slide {
    display: none;
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    padding: 48px;
}

.endorsement-slide.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.endorsement-content {
    max-width: 100%;
    position: relative;
}

.quote-mark {
    font-size: 72px;
    color: var(--accent-blue, #152878);
    font-family: Georgia, serif;
    position: absolute;
    top: -20px;
    left: -8px;
    line-height: 1;
    opacity: 0.3;
}

blockquote {
    font-size: 18px;
    line-height: 1.7;
    color: var(--primary-text, #1c1d1f);
    margin: 0;
    font-style: italic;
    position: relative;
    z-index: 1;
    margin-bottom: 32px;
}

.endorsement-author {
    text-align: center;
    border-top: 1px solid var(--border-light, #e1e4e8);
    padding-top: 24px;
}

.author-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-text, #1c1d1f);
    margin-bottom: 8px;
}

.author-title {
    font-size: 16px;
    color: var(--secondary-text, #6a6f73);
    margin-bottom: 4px;
}

.author-company {
    font-size: 14px;
    color: var(--accent-blue, #152878);
    font-weight: 500;
}

/* Carousel Navigation */
.carousel-navigation {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}

.carousel-prev,
.carousel-next {
    background: var(--background-white, #ffffff);
    border: 2px solid var(--border-light, #e1e4e8);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-text, #1c1d1f);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-prev:hover,
.carousel-next:hover {
    background: var(--accent-blue, #152878);
    color: white;
    border-color: var(--accent-blue, #152878);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(21, 40, 120, 0.2);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border-light, #e1e4e8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--accent-blue, #152878);
    transform: scale(1.2);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

.carousel-pause {
    background: var(--background-white, #ffffff);
    border: 2px solid var(--border-light, #e1e4e8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-pause:hover {
    background: var(--accent-blue, #152878);
    color: white;
    border-color: var(--accent-blue, #152878);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(21, 40, 120, 0.2);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .endorsements-section {
        padding: 60px 0;
    }
    
    .endorsements-section h2 {
        font-size: 24px;
        margin-bottom: 32px;
        padding: 0 20px;
    }
    
    .endorsements-carousel {
        margin: 0 20px;
    }
    
    .endorsement-slide {
        padding: 32px 24px;
    }
    
    .quote-mark {
        font-size: 48px;
        top: -15px;
        left: -4px;
    }
    
    blockquote {
        font-size: 16px;
        margin-bottom: 24px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .carousel-prev,
    .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .carousel-navigation {
        gap: 16px;
        margin-top: 24px;
    }
}

@media (max-width: 480px) {
    .endorsements-section {
        padding: 40px 0;
    }
    
    .endorsements-carousel {
        margin: 0 16px;
    }
    
    .endorsement-slide {
        padding: 24px 20px;
        min-height: 350px;
    }
    
    blockquote {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-title {
        font-size: 14px;
    }
    
    .author-company {
        font-size: 13px;
    }
}
