/* Font declarations */
@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Sora';
    src: url('fonts/Sora-ExtraBold.ttf') format('truetype');
    font-weight: 800;
}

@font-face {
    font-family: 'EncodeSansSemiCondensed';
    src: url('fonts/EncodeSansSemiCondensed-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'EncodeSansSemiCondensed';
    src: url('fonts/EncodeSansSemiCondensed-Bold.ttf') format('truetype');
    font-weight: 700;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', sans-serif;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #111111;
    padding-top: 80px; /* Add padding to account for fixed header */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
.header {
    background-color: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 80px;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

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

.logo-image {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Sora', sans-serif;
    font-weight: 800;  /* ExtraBold */
    font-size: 28px;  /* Slightly bigger */
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s ease;
    line-height: 1;
}

.logo-text:hover {
    color: #D7FC70;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #FFFFFF;
    margin-left: 2rem;
    font-family: 'Sora', sans-serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #D7FC70;
}

/* Hero section */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px); /* Subtract header height */
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 20px;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    display: block;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #FFFFFF;
    line-height: 1.2;
}

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

.store-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-button {
    transition: transform 0.3s ease;
}

.store-button:hover {
    transform: translateY(-3px);
}

.store-badge {
    height: 48px;
    width: 144px;
    object-fit: contain;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.qr-code {
    width: 120px;
    height: 120px;
    border-radius: 12px;
}

.qr-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Sora', sans-serif;
    font-weight: 500;
}

/* About section */
.about-section {
    padding: 5rem 0;
    background-color: #111111;
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #FFFFFF;
}

.about-section p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

/* Features section */
.features-section {
    padding: 5rem 0;
    background-color: #000000;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: #111111;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

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

.feature-image {
    width: 120px;
    height: 120px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* Premium section */
.premium-section {
    padding: 5rem 0;
    background-color: #111111;
}

.premium-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.premium-text {
    flex: 1;
}

.premium-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.premium-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.premium-features {
    list-style: none;
    margin-bottom: 2rem;
}

.premium-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.check-icon {
    width: 24px;
    height: 24px;
    margin-right: 1rem;
}

.premium-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #D7FC70;
    color: #000000;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

.premium-button:hover {
    transform: translateY(-3px);
}

.premium-image {
    flex: 1;
}

.premium-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Contact section */
.contact-section {
    padding: 5rem 0;
    background-color: #000000;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    background-color: #111111;
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    padding: 1rem 2rem;
    background-color: #D7FC70;
    color: #000000;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    transition: transform 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: #000000;
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-logo-image {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #D7FC70;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #D7FC70;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .header {
        height: 120px; /* Increased height for mobile */
    }

    body {
        padding-top: 120px; /* Match header height */
    }

    .nav-container {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 0.5rem;
    }

    .nav-links a {
        margin: 0 1rem;
    }

    .hero-section {
        min-height: calc(100vh - 120px); /* Adjust for mobile header height */
        padding: 2rem 1rem;
    }

    .hero-content {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }

    .hero-logo {
        width: 140px;
        margin-bottom: 1.5rem;
    }

    .store-badge {
        height: 44px;
        width: 132px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .download-options {
        padding: 0 1rem;
    }

    .store-buttons {
        gap: 0.75rem;
    }

    .premium-content {
        flex-direction: column;
        text-align: center;
    }

    .premium-features li {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}

/* Page header */
.page-header {
    background-color: #000000;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
}

/* About page styles */
.about-content {
    padding: 5rem 0;
    background-color: #111111;
}

.about-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.about-list {
    list-style: none;
    margin-left: 1rem;
    margin-bottom: 2.5rem;
}

.about-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.about-list li::before {
    content: "•";
    color: #D7FC70;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.about-illustration {
    width: 100%;
    max-width: 400px;
    height: auto;
}

/* Features page styles */
.features-content {
    padding: 5rem 0;
    background-color: #111111;
}

.features-content .features-grid {
    gap: 3rem;
}

.features-content .feature-card {
    padding: 3rem;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
    text-align: left;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
}

.feature-list li::before {
    content: "•";
    color: #D7FC70;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive design updates */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content-wrapper {
        padding: 0 1.5rem;
    }

    .about-text h2 {
        font-size: 1.75rem;
    }

    .about-text p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .about-list {
        margin-bottom: 2rem;
    }

    .about-illustration {
        max-width: 300px;
    }

    .features-content .feature-card {
        padding: 2rem;
    }
}

/* FAQ Page Styles */
.faq-content {
    padding: 5rem 0;
    background-color: #111111;
}

.faq-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.faq-category {
    background-color: #000000;
    border-radius: 16px;
    padding: 2rem;
}

.faq-category h2 {
    color: #D7FC70;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin: 0;
}

.faq-toggle {
    color: #D7FC70;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #111111;
}

.faq-answer p,
.faq-answer ul,
.faq-answer ol {
    padding: 1.5rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

.faq-answer ul,
.faq-answer ol {
    padding-left: 3rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer li:last-child {
    margin-bottom: 1.5rem;
}

.faq-contact {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background-color: #000000;
    border-radius: 16px;
}

.faq-contact h2 {
    color: #D7FC70;
    margin-bottom: 1rem;
}

.faq-contact p {
    color: rgba(255, 255, 255, 0.7);
}

.faq-contact a {
    color: #D7FC70;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-contact a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .faq-category {
        padding: 1.5rem;
    }

    .faq-category h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 1.25rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
        padding-right: 1rem;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer ol {
        padding: 1.25rem;
    }

    .faq-contact {
        padding: 2rem 1.5rem;
    }
}

/* Contact page styles */
.contact-page-content {
    padding: 5rem 0;
    background-color: #111111;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #FFFFFF;
}

.contact-info > p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background-color: #000000;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.contact-method i {
    font-size: 2rem;
    color: #D7FC70;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.2rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #D7FC70;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #FFFFFF;
}

.social-links-horizontal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links-horizontal a {
    font-size: 1.5rem;
}

.contact-form-section {
    background-color: #000000;
    padding: 3rem;
    border-radius: 16px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFFFFF;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #FFFFFF;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FFFFFF' viewBox='0 0 16 16'%3E%3Cpath d='M8 11.5l-6-6h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1.5rem;
    }

    .contact-info h2,
    .contact-form-section h2 {
        font-size: 1.75rem;
    }

    .contact-method {
        padding: 1.5rem;
    }

    .contact-form-section {
        padding: 2rem;
    }
}

/* Privacy Policy and Terms of Use pages */
.privacy-content,
.terms-content {
    padding: 5rem 0;
    background-color: #111111;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.date-info {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.date-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.privacy-content h2,
.terms-content h2 {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 2.5rem 0 1.5rem;
}

.privacy-content h3,
.terms-content h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.privacy-content p,
.terms-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-content ul,
.terms-content ul {
    list-style: none;
    margin: 0 0 1.5rem 1rem;
}

.privacy-content ul li,
.terms-content ul li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.privacy-content ul li::before,
.terms-content ul li::before {
    content: "•";
    color: #D7FC70;
    position: absolute;
    left: 0;
    font-size: 1.5rem;
    line-height: 1;
}

.privacy-content a,
.terms-content a {
    color: #D7FC70;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-content a:hover,
.terms-content a:hover {
    color: #FFFFFF;
}

@media (max-width: 768px) {
    .privacy-content,
    .terms-content {
        padding: 3rem 0;
    }

    .content-wrapper {
        padding: 0 1.5rem;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }

    .privacy-content h3,
    .terms-content h3 {
        font-size: 1.25rem;
        margin: 1.5rem 0 1rem;
    }

    .privacy-content p,
    .terms-content p {
        font-size: 0.95rem;
    }
}

/* App Showcase Sections */
.app-showcase {
    position: relative;
    z-index: 3;
    padding: 8rem 0;
    background-color: #111111;
    overflow: hidden;
}

.app-showcase:first-of-type {
    padding-top: 4rem;
    margin-top: 0;
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 0 20px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Styles */
.slider-container {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0;
    background: none;
}

/* Premium section slider (wider for double screens) */
.app-showcase[style*="background-color: #000000"] .slider-container {
    max-width: 800px;
    padding: 0 1rem;
    background-color: #000000;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    background: none;
}

.slide {
    min-width: 100%;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: none;
}

/* Premium section slides need padding */
.app-showcase[style*="background-color: #000000"] .slide {
    padding: 1rem;
    background-color: #000000;
}

/* Basic section slides (default) */
.slide img {
    width: 100%;
    height: 700px;
    border-radius: 20px;
    box-shadow: none;
    object-fit: contain;
    background: none;
}

/* Premium section slides (black background) */
.app-showcase[style*="background-color: #000000"] .slide img {
    background-color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slide-double {
    min-width: 100%;
}

.slide-double-images {
    display: flex;
    gap: 1rem;
    height: 700px;
}

/* Basic section double images (default) */
.slide-double-images img {
    width: calc(50% - 0.5rem);
    height: 100%;
    border-radius: 20px;
    object-fit: contain;
}

/* Premium section double images (black background) */
.app-showcase[style*="background-color: #000000"] .slide-double-images img {
    background-color: #000000;
}

.slide-caption {
    text-align: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 12px;
    margin-top: 1rem;
    position: relative;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.slide-caption h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #D7FC70;
}

.slide-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Slider Navigation */
.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    position: relative;
    z-index: 10;
}

.prev-btn,
.next-btn {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    color: #D7FC70;
    background: rgba(0, 0, 0, 0.9);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

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

.slider-dot.active {
    background: #D7FC70;
}

@media (max-width: 768px) {
    .app-showcase {
        padding: 4rem 0;
    }

    .showcase-header {
        margin-bottom: 3rem;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }

    .slide {
        padding: 0.5rem;
    }

    .slide-caption {
        padding: 1rem;
    }

    .slide-double-images {
        flex-direction: column;
        gap: 0.5rem;
    }

    .slide-double-images img {
        width: 100%;
    }

    .slide img,
    .slide-double-images {
        height: 500px; /* Smaller height for mobile */
    }

    .slide-double-images {
        flex-direction: column;
        gap: 0.5rem;
    }

    .slide-double-images img {
        width: 100%;
        height: calc(50% - 0.25rem); /* Half height minus half the gap */
    }
}

/* Remove the general media query for slider width */
@media (min-width: 769px) {
    /* This section can be removed since we're handling the width differently now */
} 