/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
}

body {
    color: #000;
    background-color: #fff;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    min-height: 100vh;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Header styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom, rgba(12, 12, 12, 0.765), rgba(20, 20, 20, 0.7225));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.01), 0 2px 10px rgba(0, 0, 0, 0.3);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.007);
}

.logo {
    display: flex;
    align-items: center;
}

.stoado-owl {
    height: auto;
    width: 70px;
    object-fit: contain;
    margin-right: 0;
    filter: brightness(0) invert(1);
}

.stoado-logo {
    height: auto;
    width: 130px;
    object-fit: contain;
    margin-left: -30px;
}

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

.nav-link {
    background-color: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    color: #ffffff;
    transition: all 0.2s ease;
    position: relative;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.7);
}

.nav-link.activity-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
}

.activity-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Nav dropdown styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 400;
    padding: 0;
}

.dropdown-toggle:hover {
    color: rgba(255, 255, 255, 0.7);
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px solid #ffffff;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1001;
    display: none;
    min-width: 280px;
    padding: 20px;
    margin: 8px 0 0;
    background: #ffffff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    border: none;
    overflow: hidden;
}

.dropdown-menu.show {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s;
    border-radius: 4px;
    margin-bottom: 4px;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.dropdown-item img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: contain;
    background: transparent;
    padding: 0;
}

.dropdown-item-text {
    display: flex;
    flex-direction: column;
}

.dropdown-item-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
}

.dropdown-item-subtitle {
    font-size: 0.8rem;
    color: #666666;
}

/* Mobile responsiveness for dropdown */
@media (max-width: 768px) {
    .dropdown-menu {
        position: fixed;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 12px 12px 0 0;
        margin: 0;
        padding: 15px 0;
        bottom: 0;
    }
}

/* Hero section styles */
.hero {
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.tagline {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.description {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
}

.cta-button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #444;
}

.hero-cta-container {
    display: flex;
    justify-content: flex-start;
    margin-top: 2.5rem;
}

.hero-cta-button {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.8rem 1.8rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.hero-cta-button:hover {
    background-color: #444;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.chrome-logo {
    width: 26px;
    height: 26px;
    margin-right: 10px;
}

.install-info {
    margin-top: 1.3rem;
    font-size: 0.85rem;
}

.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem 0;
}

.section-tag {
    font-size: 0.8rem;
    color: #666;
    margin-top: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.disclaimer {
    font-size: 0.7rem;
    color: #a3a3a3;
    margin-top: 0.5rem;
    text-align: center;
}

/* Navigation buttons */
.navigation {
    margin-bottom: 1.5rem;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.nav-btn {
    border: 1px solid #ccc;
    background-color: transparent;
    border-radius: 50px;
    padding: 0.3rem 1rem;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all 0.2s ease;
    color: #333;
    -webkit-appearance: none;
    -webkit-text-fill-color: #333;
}

.nav-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Trusted section */
.trusted {
    text-align: center;
    margin-top: 6rem;
    margin-bottom: 2.5rem;
    align-self: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.trusted h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.marketplace-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.marketplace-logo {
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(0.3);
}

.marketplace-logo.ebay {
    width: 108px;
}

.marketplace-logo.facebook {
    width: 224px;
}

.marketplace-logo.vinted {
    width: 120px;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    padding: 0.8rem;
    border-top: 1px solid #ddd;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    font-size: 0.85rem;
}

.cookie-icon {
    margin-right: 0.8rem;
}

.cookie-circle {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #333;
}

.cookie-text {
    flex: 1;
    font-size: 0.8rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    font-size: 0.8rem;
    cursor: pointer;
}

.settings {
    background-color: white;
    border: 1px solid #ccc;
    color: #333;
}

.reject {
    background-color: #444;
    color: white;
    border: none;
}

.accept {
    background-color: #333;
    color: white;
    border: none;
}

.close-btn {
    margin-left: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.hero-cta {
    max-width: 600px;
    margin: 1.0rem 0 0.1rem;
}

.hero-cta .cta-container {
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-cta .cta-button {
    margin: 0 0 0.5rem;
}

.hero-cta .disclaimer {
    margin-bottom: 0.5rem;
    text-align: left;
}

.hero-cta .install-info {
    margin-top: 0.5rem;
    text-align: left;
}

@media (max-width: 900px) {
    .hero-cta {
        margin: 1.5rem 0 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta .cta-container {
        align-items: flex-start;
    }
    
    .hero-cta .disclaimer,
    .hero-cta .install-info {
        text-align: left;
    }
    
    .philosophy-title, .philosophy-tagline {
        max-width: 100%;
    }
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .nav-buttons {
        flex-wrap: wrap;
    }
    
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-buttons {
        margin-top: 1rem;
    }
    
    .cookie-text {
        margin: 1rem 0;
    }
    
    .close-btn {
        position: absolute;
        top: 10px;
        right: 10px;
    }
    
    .nav {
        gap: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    /* Left-align the philosophy heading and tagline on mobile */
    .philosophy-title,
    .philosophy-tagline {
        text-align: left;
    }
}

/* Stats section */
.stats {
    max-width: 450px;
    margin: 3rem auto 4rem;
    text-align: center;
    color: #333;
}

.stat-content {
    max-width: 450px;
    margin: 0 auto;
}

.stat-large {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.highlight-box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.2em 0.4em;
    border-radius: 4px;
}

.stat-item {
    margin-bottom: 2.5rem;
    font-size: 1.0rem;
    line-height: 1.8;
    font-family: 'Poppins', sans-serif;
}

.section-title {
    margin-top: 1.5rem;
    font-size: 1.2rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.5px;
}

/* How It Works section */
    .how-it-works-content {
    max-width: 1200px;
    margin: 1rem auto 5rem;
    padding: 0 1rem;
    }
    
    .feature-squares {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    }
    
    .feature-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    background: none !important;
    box-shadow: none !important;
    border: none !important;
}

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

.feature-img {
    width: 100%;
    border-radius: 0;
    box-shadow: none !important;
    background: none !important;
    display: block;
    border: none !important;
}

.feature-item:hover .feature-img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }
    
    .feature-caption {
    margin-top: 1.2rem;
    text-align: center;
}

.caption-slideshow {
    position: relative;
    height: 120px; /* Adjust based on your content */
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
}

.slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    font-family: 'Poppins', sans-serif;
    }
    
    .feature-caption h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    }
    
    .feature-caption p {
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.caption-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.caption-section {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.caption-section:not(:last-child) {
    border-bottom: 1px solid #eee;
}

@media (max-width: 900px) {
    .feature-squares {
        flex-direction: column;
        align-items: center;
    }
    
    .feature-item {
        width: 100%;
        max-width: 400px;
        margin-bottom: 2.5rem;
    }
}

/* FAQ section */
.faq-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.faq-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: none;
    padding: 0;
}

.faq-item.hidden-faq {
    display: none;
}

.faq-item:last-child .faq-question {
    border-bottom: 1px solid #eee;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 1.2rem 2rem;
    transition: all 0.2s ease;
    text-align: left;
    width: 100%;
    border-top: 1px solid #eee;
}

.faq-question:hover {
    color: #555;
}

.faq-question h3 {
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

.faq-toggle {
    font-size: 1.8rem;
    font-weight: 300;
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    color: #777;
    line-height: 1;
}

.faq-answer {
    height: 0;
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

.faq-answer p {
    margin: 0.5rem 0 1.5rem;
    color: #555;
    line-height: 1.6;
    font-size: 0.85rem;
}

.faq-answer ul {
    margin: 0.5rem 0 1.5rem;
    padding-left: 0;
    list-style-type: none;
}

.faq-answer ul li {
    color: #555;
    line-height: 1.6;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    color: #333;
}

.faq-item.active .faq-answer {
    height: auto;
    padding: 0.5rem 2rem 1.5rem;
    min-height: 80px;
}

.faq-item.active .faq-question {
    color: #000;
    font-weight: 500;
}

.faq-item.active .faq-question h3 {
    font-weight: 600;
}

.see-more-container {
    text-align: center;
    margin: 2rem 0 1rem;
}

.see-more-btn {
    background-color: transparent;
    border: 1px solid #ccc;
    color: #333;
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.see-more-btn:hover {
    background-color: #f5f5f5;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Explore Plans section */
.explore-plans {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 1rem;
}

.plans-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 500;
}

.plans-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.plan-card {
    flex: 1;
    max-width: 350px;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    background-color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.plan-card.premium {
    border-color: #333;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.plan-card.enterprise {
    border: 2px solid #B8860B;  /* Dark goldenrod color */
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    position: relative;
    overflow: hidden;
}

.plan-name {
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.plan-subtitle {
    color: #555;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 18px;
}

.check-icon svg {
    width: 16px;
    height: 10px;
    vertical-align: middle;
    position: relative;
    top: 3px;
}

.feature-text {
    line-height: 1.4;
    flex: 1;
    font-family: 'Poppins', sans-serif;
}

.plan-price {
    margin-top: auto;
    font-family: 'Poppins', sans-serif;
}

.plan-price h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
    font-family: 'Poppins', sans-serif;
}

.plan-price p {
    color: #555;
    font-size: 0.75rem;
    line-height: 1.4;
    font-family: 'Poppins', sans-serif;
}

.premium-intro {
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.plans-info {
    max-width: 800px;
    margin: 0 auto;
}

.credits-info, .incentives {
    margin-bottom: 2rem;
    font-family: 'Poppins', sans-serif;
}

.credits-info h4, .incentives h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-family: 'Poppins', sans-serif;
}

.credits-info p, .incentives li {
    font-size: 0.85rem;
    font-family: 'Poppins', sans-serif;
}

.incentives ul {
    padding-left: 1.5rem;
    font-family: 'Poppins', sans-serif;
}

.incentives li {
    margin-bottom: 0.5rem;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 1100px) {
    .plans-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .plan-card {
        min-width: 300px;
        margin-bottom: 2rem;
    }
}

/* Feature comparison table */
.feature-comparison {
    margin-bottom: 1.5rem;
    max-width: 85%;
    margin-left: auto;
    margin-right: auto;
}

.feature-comparison h4 {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.6rem;
    font-size: 0.7rem;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    overflow: hidden;
}

.comparison-table th, 
.comparison-table td {
    padding: 0.4rem 0.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    font-weight: 600;
    color: #333;
    background-color: #f8f8f8;
    font-size: 0.75rem;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.02);
}

.comparison-table td:nth-child(1) {
    font-weight: 600;
    color: #333;
    width: 25%;
}

.comparison-table td:nth-child(2) {
    color: #666;
    width: 35%;
}

.comparison-table td:nth-child(3) {
    color: #333;
    font-weight: 500;
    width: 40%;
}

.comparison-table td:nth-child(4) {
    color: #292556;
    font-weight: 500;
}

.incentives {
    margin-bottom: 1.5rem;
}

.incentives ul {
    padding-left: 1.2rem;
}

.incentives li {
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.6rem;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 0.3rem 0.2rem;
    }
}

/* Footer styles */
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo {
    flex: 0 0 200px;
}

.footer-stoado-logo {
    width: 100px;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}

.footer-nav-column h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.2rem;
    color: #fff;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column li {
    margin-bottom: 0.8rem;
}

.footer-nav-column a {
    text-decoration: none;
    color: #aaa;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    border-top: 1px solid #333;
    padding-top: 1.5rem;
    font-size: 0.75rem;
    color: #888;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.75rem;
}

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

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

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 2rem;
    }
}

/* Contact section */
.contact-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
}

.contact-title {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 2.5rem;
    margin-top: 2.5rem;
    font-weight: 500;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.contact-item {
    text-align: center;
    padding: 1.5rem;
    border: none;
    border-radius: 8px;
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: none;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.contact-email {
    font-size: 0.95rem;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-email:hover {
    color: #666;
    text-decoration: underline;
}

@media (min-width: 768px) {
    .contact-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.cta-link {
    font-weight: 600 !important;
    color: #fff !important;
}

.cta-link:hover {
    text-decoration: underline;
}

.footer-address {
    margin-bottom: 1rem;
}

.footer-address p {
    color: #aaa;
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Loading Skeleton */
.skeleton-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: opacity 0.5s ease;
    opacity: 1;
    padding: 0;
}

.skeleton-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
    animation: skeleton-overlay 1.5s infinite;
}

@keyframes skeleton-overlay {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.skeleton-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
    max-width: 1300px;
    margin: 0 auto;
}

.skeleton-logo {
    width: 70px;
    height: 70px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 50%;
}

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

.skeleton-nav-item {
    width: 80px;
    height: 20px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-content {
    width: 100%;
    max-width: 1300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    margin-top: 3rem;
}

.skeleton-tag {
    width: 120px;
    height: 20px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1.5rem;
    border-radius: 4px;
    align-self: flex-start;
}

.skeleton-title {
    width: 80%;
    height: 60px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.skeleton-subtitle {
    width: 60%;
    height: 30px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 2rem;
    border-radius: 4px;
}

.skeleton-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 3rem;
}

.skeleton-button {
    width: 250px;
    height: 50px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1rem;
    border-radius: 8px;
}

.skeleton-text {
    width: 90%;
    height: 15px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 0.8rem;
    border-radius: 4px;
}

.skeleton-text.small {
    width: 60%;
    height: 10px;
}

.skeleton-feature {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
}

.skeleton-image {
    width: 85%;
    max-width: 800px;
    height: 300px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.skeleton-caption {
    width: 85%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skeleton-caption-title {
    width: 40%;
    height: 25px;
    background: linear-gradient(90deg, #e6e6e6 25%, #f0f0f0 50%, #e6e6e6 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    margin-bottom: 1rem;
    border-radius: 4px;
}

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

@media (max-width: 768px) {
    .skeleton-header {
        padding: 1rem;
    }
    
    .skeleton-nav-item:nth-child(4),
    .skeleton-nav-item:nth-child(5) {
        display: none;
    }
    
    .skeleton-title {
        width: 100%;
    }
    
    .skeleton-image {
        height: 200px;
    }
}

/* Feature suggestion modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(3px);
}

.modal-container {
    width: 90%;
    max-width: 500px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.modal-header {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    line-height: 1;
    padding: 0;
}

.modal-content {
    padding: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    transition: border-color 0.2s ease;
}

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #333;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
}

.cancel-btn {
    padding: 0.6rem 1.2rem;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.submit-btn {
    padding: 0.6rem 1.2rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cancel-btn:hover {
    background-color: #f5f5f5;
}

.submit-btn:hover {
    background-color: #444;
}

.modal-success {
    padding: 2rem 1.5rem;
    text-align: center;
}

.success-icon {
    font-size: 2.5rem;
    color: #32cd32;
    margin-bottom: 1rem;
}

.modal-success h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.modal-success p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}

.close-success-btn {
    padding: 0.6rem 1.5rem;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.close-success-btn:hover {
    background-color: #444;
}

@media (max-width: 768px) {
    .modal-container {
        width: 95%;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .cancel-btn, .submit-btn, .close-success-btn {
        width: 100%;
    }
}

/* Early Access Modal */
.early-access-message {
    text-align: center;
    padding: 10px 15px;
}

.early-access-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.early-access-message p {
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.early-access-message a {
    color: inherit;
    text-decoration: none;
    font-weight: bold;
}

.early-access-message a:hover {
    text-decoration: underline;
}

/* Small modal variant */
.small-modal {
    max-width: 400px;
}

.small-modal .modal-header {
    padding: 0.8rem 1.2rem;
}

.small-modal .modal-header h3 {
    font-size: 1rem;
}

.small-modal .modal-content {
    padding: 1rem;
}

.subtle-actions {
    margin-top: 0.8rem;
}

.subtle-actions button,
.subtle-actions a {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.products-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #393939;
    letter-spacing: -0.02em;
}

/* Philosophy Hero Section */
.philosophy-hero {
    position: relative;
    padding: 1.5rem 1rem;
    max-width: 1000px;
    margin: 2rem auto 10rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-height: 400px;
}

.philosophy-title {
    font-size: 3.3rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    color: #393939;
    letter-spacing: -0.02em;
    max-width: 800px;
    display: block;
    width: 100%;
}

.philosophy-tagline {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 400;
    color: #444;
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    max-width: 650px;
}

.risk-assessment-demo-section {
    position: absolute;
    top: 15rem;
    right: 6rem;
    width: 250px;
    text-align: left;
    margin-bottom: 4rem;
}

.risk-assessment-demo-section .caption-slideshow {
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 110px;
}

.risk-assessment-demo-section .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    pointer-events: none;
}

.risk-assessment-demo-section .slide.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

.risk-assessment-demo {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.demo-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0.6rem 0 0.2rem;
    color: #333;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.demo-description {
    font-size: 0.7rem;
    line-height: 1.4;
    color: #555;
    margin: 0;
    padding: 0;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

@media (max-width: 900px) {
    .risk-assessment-demo-section {
        position: relative;
        top: 0;
        right: 0;
        width: 250px;
        max-width: 250px;
        margin: 3rem 0 2rem;
    }
    
    .philosophy-hero {
        margin-bottom: 2rem;
        min-height: auto;
    }
    
    .philosophy-title {
        text-align: center;
        margin: 0 auto 0.6rem;
    }
    
    .philosophy-tagline {
        text-align: center;
        margin: 1.5rem auto 0;
    }
    
    .section-tag {
        text-align: center;
        width: 100%;
    }
}

/* Section tag styling */
.section-tag {
    font-size: 0.65rem;
    color: #bbbbbb;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: left;
    padding-left: 0.5rem;
    margin: 0 0 2.5rem 0;
}

.product-tagline {
    text-align: center;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    color: #444;
}

.products-section {
    position: relative;
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto 0;
}

/* Adjust main content to account for fixed header */
main {
    margin-top: 80px;
    padding-top: 1rem;
}

/* Activity dropdown specific styles */
.activity-dropdown .dropdown-menu {
    width: 350px;
    padding: 0;
    background: rgba(43, 43, 43, 0.98);
}

.activity-header {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 4px;
}

.activity-header h3 {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.activity-items {
    padding: 8px;
    max-height: 500px;
    overflow-y: auto;
}

.activity-items .dropdown-item {
    padding: 12px 16px;
    margin-bottom: 6px;
    color: #ffffff;
}

.activity-items .dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.activity-items .dropdown-item:last-child {
    margin-bottom: 0;
}

.activity-items .dropdown-item img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    background: none;
    padding: 0;
}

.activity-menu .dropdown-item-text {
    padding-top: 4px;
    padding-bottom: 4px;
}

.activity-menu .dropdown-item-title {
    font-size: 1rem;
    margin-bottom: 4px;
    color: #ffffff;
}

.activity-menu .dropdown-item-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsiveness for activity dropdown */
@media (max-width: 768px) {
    .activity-dropdown .dropdown-menu {
        width: 100%;
        max-width: none;
    }
}

/* Section divider */
.section-divider {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(200, 200, 200, 0.5), transparent);
    margin: 0.2rem auto 0.2rem;
    clear: both;
}

/* Section animations */
.animate-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-section.show {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion) {
    .animate-section {
        transition: none;
        opacity: 1;
        transform: none;
    }
}

/* Typing animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.typing-cursor {
    animation: blink 1s infinite;
    color: #333;
    font-weight: 400;
    display: inline-block;
    vertical-align: middle;
}

.typing-text {
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
    padding: 0;
    max-width: 100%;
    font-size: 1.2rem;
}

/* Mobile responsive fixes */
@media (max-width: 768px) {
  /* Fix horizontal scrolling and base layout */
  * {
    font-size: 14px;
  }
  
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 0.75rem;
  }
  
  main {
    overflow-x: hidden;
    margin-top: 60px;
  }
  
  /* Make all images responsive */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Header adjustments */
  header {
    padding: 0.75rem 1rem;
  }
  
  .nav {
    gap: 0.75rem;
  }
  
  .stoado-owl {
    width: 55px;
  }
  
  /* Text size reductions */
  .philosophy-title, .products-title, .hero h2 {
    font-size: 1.4rem;
    max-width: 100%;
    padding: 0 0.5rem;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  
  .tagline, .description, .product-tagline, .section-title {
    font-size: 0.85rem;
    padding: 0 0.5rem;
    width: 100%;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }
  .philosophy-tagline {
    font-size: 0.85rem;
    text-align: left;
    padding: 0;
  }
  
  /* Remove breaks that force width */
  .description br, .tagline br, .install-info br {
    display: none;
  }
  
  /* Center align section tags */
  .section-tag {
    text-align: center;
    padding-left: 0;
  }
  
  /* Global adjustments for all sections */
  .hero, .products-section, .philosophy-hero, .how-it-works-content,
  .explore-plans, .contact-section, .faq-section, .trusted, .stats {
    padding: 0.75rem 0.5rem;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

/* Stats section */
  .stat-item {
    font-size: 1.0rem;
    padding: 0 0.5rem;
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  
  /* Marketplace logos */
  .marketplace-logos {
    gap: 1.5rem;
    padding: 0 0.5rem;
  }
  
  .marketplace-logo.facebook {
    width: 140px;
  }
  
  .marketplace-logo.ebay, .marketplace-logo.vinted {
    width: 75px;
  }
  
  /* FAQ section */
  .faq-question {
    padding: 1rem 1.25rem;
  }
  
  .faq-question h3 {
    font-size: 0.9rem;
    width: 85%;
  }
  
  .faq-toggle {
    font-size: 1.5rem;
  }
  
  .faq-answer {
    padding: 0 1.25rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0.25rem 1.25rem 1.25rem;
  }
  
  /* Plans section */
  .plan-name {
    font-size: 1.4rem;
  }
  
  .plan-price h3 {
    font-size: 1.8rem;
  }
  
  .feature-comparison {
    max-width: 100%;
  }
  
  /* CTA button */
  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .chrome-logo {
    width: 22px;
    height: 22px;
  }
  
  .disclaimer, .install-info {
    font-size: 0.75rem;
    padding: 0 0.5rem;
  }
  
  /* Fix table display on mobile */
  .comparison-table {
    max-width: 100%;
    font-size: 0.65rem;
    display: block;
    overflow-x: auto;
  }
  
  .comparison-table th, 
  .comparison-table td {
    padding: 0.4rem 0.3rem;
    min-width: 80px;
  }
  
  /* Fix container width issues */
  .container, 
  .hero, 
  .philosophy-hero, 
  .products-section, 
  .how-it-works-content,
  .stats, 
  .faq-section, 
  .explore-plans, 
  .contact-section {
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
  * {
    font-size: 13px;
  }
  
  .philosophy-title, .products-title, .hero h2 {
    font-size: 1.875rem;
  }
  
  header {
    padding: 0.5rem 0.75rem;
  }
  
  .nav-link {
    font-size: 0.8rem;
  }
  
  .nav {
    gap: 0.5rem;
  }
  
  .stoado-owl {
    width: 45px;
  }
  
  .marketplace-logos {
    gap: 1rem;
  }
  
  .marketplace-logo.facebook {
    width: 120px;
  }
  
  .marketplace-logo.ebay, .marketplace-logo.vinted {
    width: 65px;
  }
  
  .footer-container {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .footer-nav {
    gap: 1.5rem;
  }
}

/* Ensure footer is always properly displayed */
@media (max-width: 992px) {
  .site-footer {
    width: 100%;
    position: relative;
    left: 0;
    right: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
    .philosophy-hero {
        padding: 1rem 0.75rem;
    }
    
    .philosophy-title {
        font-size: 2.25rem;
        text-align: left;
        padding: 0;
    }
    
    .philosophy-tagline {
        font-size: 0.85rem;
        text-align: left;
        padding: 0;
    }
    
    .section-tag {
        text-align: left;
        padding-left: 0;
    }
    
    .hero-cta .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .hero-cta .disclaimer {
        font-size: 0.7rem;
    }
    
    .hero-cta .install-info {
        font-size: 0.8rem;
    }
    
    .demo-title {
        font-size: 0.85rem;
    }
    
    .demo-description {
        font-size: 0.7rem;
    }
    
    /* Header styles for mobile */
    .hide-on-mobile {
        display: none;
    }
    
    .nav {
        gap: 2rem;
    }
    
    header {
        padding: 0.75rem 1rem;
    }
    
    .nav-link {
        font-size: 0.95rem;
        font-weight: 500;
    }
    
    .stoado-owl {
        width: 55px;
    }
}

/* Custom Stats Section Styling */
.stat-large {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
.highlight-box {
    display: inline-block;
    background-color: #4d4d4d;
    color: #fff;
    padding: 0.1em 0.25em; /* Further reduced padding */
    border-radius: 3px; /* Slightly smaller radius */
    font-size: 1.1rem;
    font-weight: 400; /* Normal font weight */
}

@media (max-width: 768px) {
    .stats {
        max-width: 400px;
    }
    
    .stat-content {
        max-width: 400px;
    }
    
    .stat-item {
        font-size: 1.0rem;
        padding: 0 0.5rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
}

#meet-monty, #faqs, #contact, #explore-plans {
  scroll-margin-top: 150px;
}

.ceo-note {
    font-size: 0.65rem;
    color: #555;
    text-align: center;
    margin-top: 0.4rem;
    font-weight: 400;
}

.meet-monty-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin: 3rem 0 4rem 0;
}

.meet-monty-left {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.meet-monty-right {
  flex: 1 1 0;
  min-width: 280px;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.meet-monty-right .feature-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 0 !important;
}

.meet-monty-right .feature-caption {
  text-align: center;
}

.caption-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.caption-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .meet-monty-flex {
    flex-direction: column;
    gap: 2rem;
  }
  .meet-monty-left, .meet-monty-right {
    max-width: 100%;
    min-width: 0;
  }
  .meet-monty-right .feature-img {
    max-width: 100%;
  }
}

.monty-caption-rotator {
    position: relative;
    width: 100%;
    min-height: 0;
    margin-top: -6rem;
    margin-bottom: 0 !important;
    padding-top: 0;
    text-align: center;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    word-break: break-word;
}
.monty-caption-rotator .demo-title,
.monty-caption-rotator .demo-description {
    display: block;
    width: 100%;
}
