:root {
    /* Colors derived from Logo Idea: Blue, Purple, Orange */
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #f97316 100%);
    --secondary-gradient: linear-gradient(135deg, #f97316 0%, #8b5cf6 100%);

    --bg-dark: #0b0e14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);

    --text-main: #ffffff;
    --text-muted: #94a3b8;

    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-orange: #f97316;

    --blob-1: #3b82f6;
    --blob-2: #8b5cf6;
    --blob-3: #f97316;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Blobs */
.blob-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    filter: blur(100px);
    opacity: 0.4;
    border-radius: 50%;
    animation: float 20s infinite alternate;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--blob-1);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--blob-2);
    top: 40%;
    right: -100px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--blob-3);
    bottom: -100px;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }

    33% {
        transform: translate(30px, -50px) scale(1.05) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95) rotate(240deg);
    }

    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.services-grid {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.glass {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.1);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.2);
}

.btn:focus-visible {
    outline: 2px solid var(--accent-purple);
    outline-offset: 3px;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn.sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.full-width {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s, padding 0.3s;
}

.navbar.scrolled {
    background: rgba(11, 14, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
}

.logo span {
    color: var(--accent-orange);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}

.nav-links a:not(.btn) {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 4px;
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gradient);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.nav-links a:not(.btn):hover {
    color: white;
}

.nav-links a.active {
    color: white;
}

.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    font-size: 1.5rem;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-small {
    min-height: 50vh;
}

.hero-content {
    max-width: 800px;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--accent-blue);
    font-size: 0.9rem;
    margin-bottom: 24px;
    font-weight: 500;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

/* Floating Pills */
.floating-pills {
    position: absolute;
    right: 25%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: float-pill 3s ease-in-out infinite;
    white-space: nowrap;
}

.pill-emoji {
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pill i {
    width: 20px;
    height: 20px;
}

.pill-1 {
    animation-delay: 0s;
}

.pill-2 {
    animation-delay: 0.5s;
}

.pill-3 {
    animation-delay: 1s;
}

@keyframes float-pill {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-10px) translateX(5px);
    }
}

/* Platform Logo Bar */
.platform-bar {
    padding: 40px 0 20px;
    text-align: center;
}

.platform-label {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.75rem;
    margin-bottom: 28px;
}

.platform-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.platform-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0.55;
    transition: opacity 0.3s ease;
}

.platform-logo:hover {
    opacity: 1;
}

.platform-logo span {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    white-space: nowrap;
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.platform-logo:hover span {
    color: var(--text-main);
}

.platform-logo svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Sections */
.section {
    padding: clamp(60px, 8vw, 120px) 0;
}

.section:nth-child(even) {
    background: rgba(255, 255, 255, 0.015);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: clamp(2rem, 3vw + 0.5rem, 3rem);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-muted);
}

/* Services */
.card {
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(139, 92, 246, 0.2);
}

.icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.card p {
    color: var(--text-muted);
}

/* Service Cards */
.service-card {
    position: relative;
}

.service-card.featured {
    border-color: var(--accent-purple);
}

.popular-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--secondary-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.outcome-box {
    margin-top: 20px;
    padding: 16px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-left: 3px solid var(--accent-blue);
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.outcome-box strong {
    color: var(--accent-blue);
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 24px;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.1rem;
}

.check-list li i {
    color: var(--accent-orange);
    width: 20px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.stat .number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Calendly Widget Styling override if needed, usually inline is enough */
.calendly-inline-widget {
    background: var(--bg-card);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
}

/* About Page - Our Story */
.story-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 24px;
    color: var(--text-main);
}

.story-content p strong {
    color: var(--accent-orange);
}

.story-content .mission {
    font-size: 1.3rem;
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

/* About Page - Our Approach */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.approach-card {
    position: relative;
    padding: 40px 32px;
    transition: transform 0.3s, border-color 0.3s;
}

.approach-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.approach-number {
    position: absolute;
    top: -20px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.approach-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    margin-top: 16px;
}

.approach-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* About Page - Team */
.team-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-member {
    text-align: center;
    max-width: 400px;
    padding: 48px;
}

.member-image-container {
    width: 200px;
    height: 200px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--primary-gradient);
    padding: 4px;
    position: relative;
}

.member-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-dark);
}

.team-member h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
}

.member-role {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border-color);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}

.socials {
    display: flex;
    gap: 16px;
}

.socials a {
    color: var(--text-muted);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.socials a:hover {
    color: white;
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Showcase Page - Tabs */
.showcase-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.tab-btn {
    padding: 12px 32px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.tab-btn:hover {
    border-color: var(--accent-purple);
    color: white;
}

.tab-btn.active {
    background: var(--primary-gradient);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

/* Showcase Grid */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 350px), 1fr));
    gap: 32px;
}

.showcase-card {
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
    cursor: pointer;
}

.showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-purple);
}

.showcase-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    position: relative;
}

.showcase-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(11, 14, 20, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.showcase-card:hover .showcase-image img {
    transform: scale(1.05);
}

.showcase-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
}

.showcase-placeholder i {
    width: 80px;
    height: 80px;
    color: var(--accent-purple);
}

.showcase-content {
    padding: 24px;
}

.showcase-content h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.showcase-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Carousel */
.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.carousel-wrapper {
    overflow: hidden;
    border-radius: 16px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    display: flex;
    flex-direction: column;
}

.carousel-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-content {
    padding: 32px;
    text-align: center;
}

.carousel-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.carousel-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

.carousel-btn i {
    width: 24px;
    height: 24px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--accent-purple);
    width: 30px;
    border-radius: 5px;
}

.carousel-pause-play {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: white;
    transition: all 0.3s;
    padding: 0;
}

.carousel-pause-play:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: var(--accent-purple);
    transform: scale(1.1);
}

.carousel-pause-play i {
    width: 20px;
    height: 20px;
}

.text-center {
    text-align: center;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

/* Responsive */
/* Tablet and small desktop adjustments for floating pills */
@media (max-width: 1200px) {
    .floating-pills {
        right: 5%;
        scale: 0.9;
    }
}

@media (max-width: 1024px) {
    .floating-pills {
        right: 2%;
        scale: 0.85;
    }
}

@media (max-width: 900px) {
    .floating-pills {
        display: none;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(11, 14, 20, 0.95);
        backdrop-filter: blur(20px);
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        gap: 16px;
        animation: slideDown 0.3s ease;
    }

    /* Simplified for now */
    .about-grid,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .hamburger {
        display: block;
    }

    .floating-pills {
        display: none;
    }
}

/* Accordion */
.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 860px;
    margin: 0 auto;
}

.accordion-item {
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.accordion-item:hover {
    border-color: var(--accent-purple);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.15);
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 32px;
}

.accordion-header h3 {
    font-size: 1.25rem;
    margin: 0;
}

.accordion-chevron {
    margin-left: auto;
    transition: transform 0.3s, color 0.3s;
    color: var(--text-muted);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.accordion-item.open .accordion-chevron {
    transform: rotate(180deg);
    color: var(--accent-purple);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.accordion-body-inner {
    padding: 0 32px 28px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.accordion-body-inner h4 {
    font-size: 1rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.accordion-body-inner h4:not(:first-child) {
    margin-top: 20px;
}

.accordion-body-inner ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion-body-inner li {
    color: var(--text-muted);
    padding-left: 20px;
    position: relative;
    line-height: 1.6;
}

.accordion-body-inner li::before {
    content: '\2192';
    position: absolute;
    left: 0;
    color: var(--accent-purple);
}

/* Accordion icon box - reuses icon-box but no margin */
.accordion-header .icon-box {
    margin-bottom: 0;
    flex-shrink: 0;
}

/* CTA Strip */
.cta-strip {
    text-align: center;
    padding: 60px 0;
}

.cta-strip h2 {
    font-size: clamp(1.5rem, 2.5vw + 0.5rem, 2rem);
    margin-bottom: 8px;
}

.cta-strip p {
    color: var(--text-muted);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .accordion-header {
        padding: 20px;
    }

    .accordion-body-inner {
        padding: 20px;
    }

    .accordion-header h3 {
        font-size: 1.1rem;
    }
}