:root {
    --primary-color: #6C63FF;
    --secondary-color: #4FACFE;
}

@font-face {
    font-family: 'Permanent Marker';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/permanent-marker-regular.ttf") format('truetype');
}

.font-marker {
    font-family: 'Permanent Marker', cursive;
    letter-spacing: 0.03em;
}

body {
    background: linear-gradient(135deg, #6C63FF 0%, #4FACFE 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

.navbar {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.8) 0%, rgba(79, 172, 254, 0.8) 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 3px rgba(0,0,0,.1);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-brand {
    font-size: 1.75rem;
    font-weight: 700;
    transition: opacity 0.3s;
}

.navbar-brand:hover {
    opacity: 0.8;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.375rem;
    transition: all 0.3s;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: white !important;
}

.nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.2);
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    background-color: rgba(255, 255, 255, 0.5);
    color: #1a1a1a;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.language-switcher:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.language-switcher svg {
    width: 1rem;
    height: 1rem;
}

.nav-item.dropdown {
    position: relative;
}

.language-dropdown {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.5rem;
    background-color: white;
    border-radius: 0.375rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    list-style: none;
    padding: 0.25rem 0;
    min-width: 9rem;
    display: none;
    z-index: 1000;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown li button {
    width: 100%;
    padding: 0.5rem 1rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 0.875rem;
    color: #4a5568;
    cursor: pointer;
    transition: background-color 0.2s;
}

.language-dropdown li button:hover {
    background-color: #f7fafc;
}

.language-dropdown li button[data-lang].active {
    background-color: #edf2f7;
    color: #1a1a1a;
    font-weight: 600;
}

.mobile-nav-panel {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.75rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(108, 99, 255, 0.1);
    color: #1a1a1a;
}

.mobile-nav-link.active {
    background-color: rgba(108, 99, 255, 0.15);
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-nav-divider {
    height: 1px;
    background-color: rgba(26, 26, 26, 0.1);
    margin: 0.5rem 0;
}

.mobile-nav-heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    padding: 0.25rem 1rem;
}

.touch-target {
    min-height: 44px;
}

.mobile-language-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: transparent;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.mobile-language-option:hover {
    background-color: rgba(108, 99, 255, 0.1);
    color: #1a1a1a;
}

.mobile-language-option[aria-selected="true"] {
    background-color: rgba(108, 99, 255, 0.15);
    color: #1a1a1a;
}

.mobile-lang-checkmark {
    color: var(--primary-color);
}

.hero-section {
    color: white;
    padding: 40px 0 80px;
}

.hero-tagline {
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(1.75rem, 4vw, 3.3rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.95;
    line-height: 1.6;
}

.btn-download {
    background-color: #000;
    color: white;
    padding: 12px 32px;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-download:hover {
    background-color: #333;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.btn-download i {
    font-size: 1.25rem;
}

.hero-image {
    width: 10rem;
    height: 10rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
}

.hero-image i {
    font-size: 8rem;
    color: white;
    opacity: 0.9;
}

.hero-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: inherit;
}

.privacy-section {
    padding: 80px 0;
}

.privacy-wrapper {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.privacy-card {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    padding: 2.5rem 1.75rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .privacy-card {
        padding: 3rem;
    }
    .hero-image {
        width: 16rem;
        height: 16rem;
        border-radius: 2.5rem;
    }
}

.privacy-header {
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}

.privacy-title {
    font-size: clamp(1.875rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
}

.privacy-brand {
    font-weight: 700;
    color: var(--primary-color);
}

.privacy-section-content h2 {
    font-size: 1.45rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.75rem;
}

.privacy-block {
    margin-bottom: 2rem;
}

.privacy-block:last-of-type {
    margin-bottom: 0;
}

.privacy-section-content p {
    color: #4a5568;
    line-height: 1.7;
}

.privacy-list {
    list-style: disc;
    padding-left: 1.25rem;
    color: #4a5568;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.privacy-analytics li {
    margin-bottom: 0.75rem;
}

.privacy-pill {
    font-weight: 600;
    color: #1a1a1a;
}

.privacy-note {
    margin-top: 1rem;
    color: #4a5568;
}

.privacy-meta {
    font-size: 0.875rem;
    color: #718096;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(26, 26, 26, 0.1);
}

.privacy-back-link {
    margin-top: 2rem;
    text-align: center;
}

.privacy-back-link a {
    color: #4FACFE;
    text-decoration: none;
    font-weight: 600;
}

.privacy-back-link a:hover {
    text-decoration: underline;
}

.features-section {
    padding: 40px 0 80px;
}

/* Story Section (Index) */
.story-section {
    padding: 60px 0 80px;
}

.story-section .section-title {
    color: white;
    margin-bottom: 2rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.25rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
    .story-card {
        padding: 3rem 3.5rem;
    }
}

.story-text {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-text:last-of-type {
    margin-bottom: 1.5rem;
}

.story-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.story-link:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.cta-section {
    padding: 80px 0;
}

.screenshots-section {
    padding: 80px 0;
}

.faq-section {
    padding: 80px 0;
}

/* Mobile: reduce section spacing */
@media (max-width: 767px) {
    .hero-section,
    .screenshots-section,
    .features-section,
    .story-section,
    .faq-section,
    .cta-section {
        padding: 30px 0;
    }
}

.faq-section .accordion-item {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-section .accordion-button {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    border: none;
}

.faq-section .accordion-button:not(.collapsed) {
    background: rgba(108, 99, 255, 0.1);
    color: #1a1a1a;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-body {
    padding: 1.5rem;
    color: #4a5568;
    line-height: 1.7;
}

.screenshots-container {
    width: 100%;
    overflow: hidden;
}

.screenshots-scroll {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 1rem;
    justify-content: flex-start;
    display: flex;
    scroll-padding-left: 1rem;
}

.screenshots-scroll::-webkit-scrollbar {
    display: none;
}

.screenshot-picture {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    scroll-snap-align: center;
}

.screenshot-item {
    height: 500px;
    width: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

@media (min-width: 992px) {
    .screenshots-scroll {
        justify-content: center;
    }
}

.screenshot-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.features-section .section-title {
    color: white;
}

.cta-section h2,
.cta-section p {
    color: white !important;
}

.features-section .feature-card h3 {
    color: #333;
}

.features-section .feature-card p {
    color: #666;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card {
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    border-radius: 10px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.95);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
}

footer {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.95) 0%, rgba(79, 172, 254, 0.95) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 3rem 0;
    margin-top: 0;
}

footer h5 {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

footer p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
}

footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
}

footer a:hover {
    color: white;
    text-decoration: underline;
}

.store-badge {
    background-color: #000;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.store-badge:hover {
    background-color: #333;
    color: white;
}

.store-badge i {
    font-size: 2rem;
    margin-right: 10px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

body.home-page .animate-on-scroll {
    opacity: 0;
}

body.home-page .animate-on-scroll.animated {
    animation: fadeInUp 0.8s ease-out forwards;
}

body.home-page .feature-card.animate-on-scroll {
    opacity: 0;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(1) {
    animation-delay: 0.1s;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(2) {
    animation-delay: 0.2s;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(3) {
    animation-delay: 0.3s;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(4) {
    animation-delay: 0.4s;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(5) {
    animation-delay: 0.5s;
}

body.home-page .feature-card.animate-on-scroll.animated:nth-child(6) {
    animation-delay: 0.6s;
}

section {
    transition: all 0.5s ease;
}

.screenshot-item {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

body.home-page .screenshot-item {
    opacity: 0;
    transform: translateY(20px);
}

body.home-page .screenshot-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ================================================
   HUMANIZED PAGES - About & Support
   ================================================ */

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    padding: 2.5rem 1.75rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .about-card {
        padding: 3rem 4rem;
    }
}

.about-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
}

.about-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 500;
}

.about-block {
    margin-bottom: 2.5rem;
}

.about-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.about-block p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.story-highlight {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    border-radius: 0 1rem 1rem 0;
    margin: 1.5rem 0;
}

.story-highlight p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

.intimidating-thoughts {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.intimidating-thoughts p {
    font-style: italic;
    color: #718096;
    margin-bottom: 0.5rem;
}

.intimidating-thoughts p:last-child {
    margin-bottom: 0;
}

.about-block .highlight-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    padding: 1rem 0;
}

/* Beliefs */
.beliefs-list {
    display: grid;
    gap: 1.5rem;
}

.belief-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
    border-radius: 1rem;
}

.belief-emoji {
    font-size: 2rem;
    flex-shrink: 0;
}

.belief-item strong {
    display: block;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.belief-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Team */
.team-facts {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

.team-facts p {
    color: #4a5568;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.team-facts p::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.team-facts p:last-child {
    margin-bottom: 0;
}

.team-conclusion {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
}

/* Thanks */
.thanks-signature {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

.thanks-team {
    font-style: italic;
    color: #718096;
}

.about-back-link {
    margin-top: 2.5rem;
    text-align: center;
}

.about-back-link a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.about-back-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Support Section */
.support-section {
    padding: 80px 0;
}

.support-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.support-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 1.5rem;
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
    padding: 2.5rem 1.75rem;
    color: #1a1a1a;
}

@media (min-width: 768px) {
    .support-card {
        padding: 3rem 3.5rem;
    }
}

.support-header {
    margin-bottom: 2.5rem;
}

.support-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.support-subtitle {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-method-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-method-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.25);
}

.contact-method-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.35);
    color: white;
}

.contact-method-secondary {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(79, 172, 254, 0.08) 100%);
    border: 1px solid rgba(108, 99, 255, 0.15);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-method-primary .contact-method-icon {
    background: rgba(255, 255, 255, 0.2);
}

.contact-method-secondary .contact-method-icon {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(108, 99, 255, 0.15);
}

.contact-method-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.contact-method-label {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-bottom: 0.15rem;
}

.contact-method-secondary .contact-method-label {
    color: #64748b;
}

.contact-method-value {
    font-weight: 600;
    font-size: 1.05rem;
}

.contact-method-secondary .contact-method-value {
    color: #1a1a1a;
}

.contact-method-arrow {
    font-size: 1.25rem;
    opacity: 0.7;
    transition: transform 0.3s;
}

.contact-method-primary:hover .contact-method-arrow {
    transform: translateX(4px);
    opacity: 1;
}

/* Support Info Cards */
.support-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
    .support-info-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.support-info-card {
    background: #f8fafc;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
}

.support-info-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.support-info-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.support-info-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Contact Joke */
.contact-joke {
    color: #94a3b8;
    font-style: italic;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Support Divider */
.support-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108, 99, 255, 0.2), transparent);
    margin: 2rem 0;
}

/* Final Word */
.final-word h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.final-word p {
    color: #4a5568;
    line-height: 1.8;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.final-thanks {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 1.25rem !important;
    margin-bottom: 0.25rem !important;
}

.thanks-team {
    font-size: 0.95rem;
    color: #64748b;
    font-style: italic;
}

.support-back-link {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.support-back-link a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.support-back-link a:hover {
    color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .belief-item {
        flex-direction: column;
        text-align: center;
    }
}

