/* Global Font Family */
* {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

/* Global Color Variables */
:root {
    /* Primary Red Colors */
    --color-red-50: #fef2f2;
    --color-red-100: #fee2e2;
    --color-red-200: #fecaca;
    --color-red-300: #fca5a5;
    --color-red-400: #f87171;
    --color-red-500: #ef4444;
    --color-red-600: #dc2626;
    --color-red-700: #b91c1c;
    --color-red-800: #991b1b;
    --color-red-900: #7f1d1d;
    --color-red-950: #450a0a;

    /* Primary Brand Red (Main Brand Color) */
    --color-primary: #dc2626;
    --color-primary-light: #ef4444;
    --color-primary-dark: #b91c1c;
    --color-primary-darker: #991b1b;

    /* Gray Colors */
    --color-gray-50: #f9fafb;
    --color-gray-100: #f3f4f6;
    --color-gray-200: #e5e7eb;
    --color-gray-300: #d1d5db;
    --color-gray-400: #9ca3af;
    --color-gray-500: #6b7280;
    --color-gray-600: #4b5563;
    --color-gray-700: #374151;
    --color-gray-800: #1f2937;
    --color-gray-900: #111827;
    --color-gray-950: #030712;

    /* Text Colors */
    --color-text-primary: #111827;
    --color-text-secondary: #6b7280;
    --color-text-muted: #9ca3af;
    --color-text-light: #ffffff;

    /* Background Colors */
    --color-bg-white: #ffffff;
    --color-bg-gray: #f9fafb;
    --color-bg-dark: #1f2937;
    --color-bg-darker: #111827;

    /* Border Colors */
    --color-border-light: #e5e7eb;
    --color-border-medium: #d1d5db;
    --color-border-dark: #9ca3af;

    /* Status Colors */
    --color-success: #10b981;
    --color-success-light: #34d399;
    --color-success-dark: #059669;
    
    --color-warning: #f59e0b;
    --color-warning-light: #fbbf24;
    --color-warning-dark: #d97706;
    
    --color-error: #ef4444;
    --color-error-light: #f87171;
    --color-error-dark: #dc2626;
    
    --color-info: #3b82f6;
    --color-info-light: #60a5fa;
    --color-info-dark: #2563eb;

    /* Shadow Colors */
    --color-shadow-sm: rgba(0, 0, 0, 0.05);
    --color-shadow-md: rgba(0, 0, 0, 0.1);
    --color-shadow-lg: rgba(0, 0, 0, 0.15);
    --color-shadow-xl: rgba(0, 0, 0, 0.2);

    /* Gradient Colors */
    --gradient-primary: linear-gradient(to bottom, #dc2626, #b91c1c);
    --gradient-primary-hover: linear-gradient(to bottom, #b91c1c, #991b1b);

}

/* Utility Classes for Colors */
.text-primary {
    color: var(--color-primary);
}

.text-primary-light {
    color: var(--color-primary-light);
}

.text-primary-dark {
    color: var(--color-primary-dark);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-primary-light {
    background-color: var(--color-primary-light);
}

.bg-primary-dark {
    background-color: var(--color-primary-dark);
}

.border-primary {
    border-color: var(--color-primary);
}

/* Gradient Classes */
.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-primary-hover:hover {
    background: var(--gradient-primary-hover);
}

/* Text Color Utilities */
.text-gray-primary {
    color: var(--color-text-primary);
}

.text-gray-secondary {
    color: var(--color-text-secondary);
}

.text-gray-muted {
    color: var(--color-text-muted);
}

/* Background Color Utilities */
.bg-white-custom {
    background-color: var(--color-bg-white);
}

.bg-gray-custom {
    background-color: var(--color-bg-gray);
}

.bg-dark-custom {
    background-color: var(--color-bg-dark);
}

/* Border Color Utilities */
.border-light {
    border-color: var(--color-border-light);
}

.border-medium {
    border-color: var(--color-border-medium);
}

.border-dark {
    border-color: var(--color-border-dark);
}

/* Hover States */
.hover-primary:hover {
    color: var(--color-primary);
}

.hover-primary-bg:hover {
    background-color: var(--color-primary);
}

.hover-primary-light:hover {
    color: var(--color-primary-light);
}

/* Active States */
.active-primary {
    color: var(--color-primary);
}

.active-primary-bg {
    background-color: var(--color-primary);
}

/* Focus States */
.focus-primary:focus {
    outline-color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Shadow Utilities */
.shadow-primary {
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.1), 0 2px 4px -1px rgba(220, 38, 38, 0.06);
}

.shadow-primary-lg {
    box-shadow: 0 10px 15px -3px rgba(220, 38, 38, 0.1), 0 4px 6px -2px rgba(220, 38, 38, 0.05);
}

/* ============================================
   TYPOGRAPHY - Fixed Font Sizes
   ============================================ */

/* H1 Styles */
h1 {
    font-size: 2rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
}




/* Paragraph Styles */
p {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

p:last-child {
    margin-bottom: 0;
}

/* Span Styles */
span {
    font-size: 1rem;
    line-height: 1.5;
    color: inherit;
}

/* ============================================
   BUTTON STYLES - Reusable Button Component
   ============================================ */

/* Base Button Style */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    white-space: nowrap;
    user-select: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* Primary Button (Main Brand Button) */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-primary:hover {
    background: var(--gradient-primary-hover);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

/* Button Sizes */
.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-md {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
    line-height: 1.5rem;
}

.btn-xl {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}

/* Button Variants */
.btn-outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-text-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(220, 38, 38, 0.1), 0 2px 4px -1px rgba(220, 38, 38, 0.06);
}

.btn-ghost {
    background: transparent;
    color: var(--color-primary);
    box-shadow: none;
}

.btn-ghost:hover {
    background: var(--color-red-50);
    color: var(--color-primary-dark);
}

.btn-white {
    background: var(--color-bg-white);
    color: var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-white:hover {
    background: var(--color-gray-50);
    color: var(--color-primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-dark {
    background: var(--color-gray-900);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-dark:hover {
    background: var(--color-gray-800);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.btn-info {
    background: var(--color-info);
    color: var(--color-text-light);
    box-shadow: 0 4px 6px -1px rgba(59, 130, 246, 0.1), 0 2px 4px -1px rgba(59, 130, 246, 0.06);
}

.btn-info:hover {
    background: var(--color-info-dark);
    box-shadow: 0 10px 15px -3px rgba(59, 130, 246, 0.1), 0 4px 6px -2px rgba(59, 130, 246, 0.05);
    transform: translateY(-1px);
}

.btn-info:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px -1px rgba(59, 130, 246, 0.1);
}

/* Full Width Button */
.btn-full {
    width: 100%;
}

/* Button with Icon */
.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.btn-icon-only {
    padding: 0.625rem;
    width: auto;
    aspect-ratio: 1;
}

.btn-icon-only svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Button Loading State */
.btn-loading {
    position: relative;
    color: transparent;
    pointer-events: none;
}

.btn-loading::after {
    content: "";
    position: absolute;
    width: 1rem;
    height: 1rem;
    top: 50%;
    left: 50%;
    margin-left: -0.5rem;
    margin-top: -0.5rem;
    border: 2px solid currentColor;
    border-radius: 50%;
    border-top-color: transparent;
    animation: btn-spin 0.6s linear infinite;
}

@keyframes btn-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Button Group */
.btn-group {
    display: inline-flex;
    gap: 0.5rem;
}

.btn-group .btn {
    margin: 0;
}

/* Responsive Button */
@media (max-width: 640px) {
    .btn-responsive {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }
}

/* Reusable Card Classes */
.card {
    background-color: white;
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1rem; /* p-4 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .card {
        padding: 1.25rem; /* md:p-5 */
    }
}

.card-title {
    color: #111827; /* text-gray-900 */
    margin-bottom: 0.75rem; /* mb-3 */
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
}

.card-icon-container {
    display: flex;
    justify-content: center;
    margin-bottom: 0.75rem; /* mb-3 */
}

.card-icon-circle {
    width: 4rem; /* w-16 */
    height: 4rem; /* h-16 */
    background-color: #dc2626; /* bg-red-600 */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem; /* p-2.5 */
    flex-shrink: 0;
}

.card-icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card-description {
    color: #374151; /* text-gray-700 */
    line-height: 1.5;
    text-align: center;
    flex-grow: 1;
    font-size: 12px;
}

/* ============================================
   FORM STYLES - Reusable Form Components
   ============================================ */

/* Form Container */
.form-container {
    background-color: #f9fafb; /* bg-gray-50 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-md */
    border: 1px solid #e5e7eb; /* border-gray-200 */
    padding: 1.25rem; /* p-5 */
}

@media (min-width: 768px) {
    .form-container {
        padding: 1.5rem; /* md:p-6 */
    }
}

/* Form Title */
.form-title {
    color: #111827; /* text-gray-900 */
    font-weight: 700;
    font-size: 1.125rem; /* text-lg */
    line-height: 1.5;
    margin-bottom: 1.25rem; /* mb-5 */
    text-align: center;
}

@media (min-width: 768px) {
    .form-title {
        font-size: 1.25rem; /* md:text-xl */
    }
}

/* Form Group */
.form-group {
    margin-bottom: 1rem; /* mb-4 */
}

.form-group:last-child {
    margin-bottom: 0;
}

/* Form Label */
.form-label {
    display: block;
    color: #374151; /* text-gray-700 */
    font-weight: 500;
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
    margin-bottom: 0.375rem; /* mb-1.5 */
}

@media (min-width: 768px) {
    .form-label {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Larger form inputs site-wide (text, email, password, select, textarea) */
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    min-height: 44px;
}
textarea {
    min-height: 6rem;
}

/* Form Input */
.form-input {
    width: 100%;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    background-color: #ffffff;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
    color: #111827; /* text-gray-900 */
    transition: all 0.2s ease-in-out;
}

.form-input::placeholder {
    color: #9ca3af; /* placeholder-gray-400 */
}

.form-input:focus {
    outline: none;
    border-color: #dc2626; /* border-red-600 */
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1); /* focus:ring-2 focus:ring-red-600 */
}

@media (min-width: 768px) {
    .form-input {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Form Textarea */
.form-textarea {
    width: 100%;
    padding: 0.5rem 0.75rem; /* px-3 py-2 */
    background-color: #ffffff;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
    color: #111827; /* text-gray-900 */
    transition: all 0.2s ease-in-out;
    resize: vertical;
    min-height: 6rem; /* min-h-24 */
}

.form-textarea::placeholder {
    color: #9ca3af; /* placeholder-gray-400 */
}

.form-textarea:focus {
    outline: none;
    border-color: #dc2626; /* border-red-600 */
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1); /* focus:ring-2 focus:ring-red-600 */
}

@media (min-width: 768px) {
    .form-textarea {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Form Select */
.form-select {
    width: 100%;
    padding: 0.5rem 2rem 0.5rem 0.75rem; /* px-3 py-2 pr-8 */
    background-color: #ffffff;
    border: 1px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.5rem; /* rounded-lg */
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
    color: #111827; /* text-gray-900 */
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%239ca3af'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.625rem center; /* pr-2.5 */
    background-size: 1rem 1rem; /* w-4 h-4 */
    transition: all 0.2s ease-in-out;
}

.form-select:focus {
    outline: none;
    border-color: #dc2626; /* border-red-600 */
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1); /* focus:ring-2 focus:ring-red-600 */
}

@media (min-width: 768px) {
    .form-select {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Form Select Wrapper */
.form-select-wrapper {
    position: relative;
}

/* Form Checkbox */
.form-checkbox {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    color: #dc2626; /* text-red-600 */
    border-color: #d1d5db; /* border-gray-300 */
    border-radius: 0.25rem; /* rounded */
}

.form-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.1); /* focus:ring-red-600 */
}

/* Form Checkbox Label */
.form-checkbox-label {
    margin-left: 0.5rem; /* ml-2 */
    color: #374151; /* text-gray-700 */
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
}

@media (min-width: 768px) {
    .form-checkbox-label {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Form Checkbox Group */
.form-checkbox-group {
    display: flex;
    align-items: center;
}

/* Form Button */
.form-button {
    width: 100%;
    padding: 0.625rem 1.5rem; /* py-2.5 px-6 */
    background: linear-gradient(to bottom, #C20303, #E13333);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem; /* text-xs */
    line-height: 1.5;
    border-radius: 0.5rem; /* rounded-lg */
    border: none;
    cursor: pointer;
    transition: opacity 0.2s ease-in-out;
}

.form-button:hover {
    opacity: 0.9;
}

@media (min-width: 768px) {
    .form-button {
        font-size: 0.875rem; /* md:text-sm */
    }
}

/* Form Success Message */
.form-success {
    margin-bottom: 1.5rem; /* mb-6 */
    padding: 1rem; /* p-4 */
    background-color: #d1fae5; /* bg-green-100 */
    border: 1px solid #34d399; /* border-green-400 */
    color: #065f46; /* text-green-700 */
    border-radius: 0.5rem; /* rounded-lg */
}

/* Form Error Message */
.form-error {
    margin-bottom: 1.5rem; /* mb-6 */
    padding: 1rem; /* p-4 */
    background-color: #fee2e2; /* bg-red-100 */
    border: 1px solid #f87171; /* border-red-400 */
    color: #991b1b; /* text-red-700 */
    border-radius: 0.5rem; /* rounded-lg */
}

.form-error ul {
    list-style: disc;
    list-style-position: inside;
    margin: 0.25rem 0 0 0;
}

.form-error li {
    margin-bottom: 0.25rem;
}

.form-error li:last-child {
    margin-bottom: 0;
}

/* Form Spacing */
.form-spacing {
    display: flex;
    flex-direction: column;
    gap: 1rem; /* space-y-4 */
}

/* Form Max Width */
.form-max-width {
    max-width: 24rem; /* max-w-sm */
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 1024px) {
    .form-max-width {
        margin-left: 0;
        margin-right: 0;
    }
}

/* ============================================
   FAQ STYLES - Reusable FAQ Components
   ============================================ */

/* FAQ Container */
.faq-container {
    display: flex;
    flex-direction: column;
    gap: 0.375rem; /* space-y-1.5 - reduced spacing */
}

/* FAQ Item - White Background Style */
.faq-item-white {
    background-color: var(--color-bg-white); /* bg-white */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 1rem 1.25rem; /* px-5 py-4 */
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-sm */
    transition: all 0.2s ease-in-out;
}

.faq-item-white:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-md */
}

.faq-question-white {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-gray-900); /* text-gray-900 */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.25rem; /* leading-5 */
}

.faq-icon-white {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: var(--color-gray-900); /* text-black */
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out;
}

.faq-item-white.active .faq-icon-white {
    transform: rotate(45deg);
}

.faq-answer-white {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, margin-top 0.3s ease-in-out;
    color: var(--color-gray-700); /* text-gray-700 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5rem; /* leading-6 */
}

.faq-item-white.active .faq-answer-white {
    max-height: 500px;
    margin-top: 0.75rem; /* mt-3 */
}

/* FAQ Item - Red Background Style */
.faq-item-red {
    background: transparent;
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    margin-bottom: 0.5rem;
}

.faq-item-red:hover .faq-question-red {
    opacity: 0.95;
}

.faq-question-red {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: linear-gradient(to right, var(--color-red-600), var(--color-red-700)); /* Red gradient */
    border-radius: 0.5rem; /* rounded-lg */
    padding: 0.875rem 1.25rem; /* px-5 py-3.5 */
    color: var(--color-text-light); /* text-white */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
}

.faq-icon-red {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: var(--color-text-light); /* text-white */
    flex-shrink: 0;
    transition: transform 0.2s ease-in-out;
}

.faq-item-red.active .faq-icon-red {
    transform: rotate(45deg);
}

.faq-answer-red {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: white;
}

.faq-item-red.active .faq-answer-red {
    max-height: 500px;
}

.faq-answer-red p {
    padding: 1rem 1.25rem;
    margin: 0;
    color: var(--color-gray-900); /* text-black */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5rem; /* leading-6 */
}

/* FAQ Item - Red Background Style with Expandable White Content */
.faq-item-red-expandable {
    border-radius: 0.5rem; /* rounded-lg */
    overflow: hidden;
    transition: all 0.2s ease-in-out;
    margin-bottom: 0.125rem; /* reduced spacing */
}

.faq-question-red-expandable {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(to right, var(--color-red-600), var(--color-red-700)); /* Red gradient */
    padding: 0.875rem 1.25rem; /* px-5 py-3.5 */
    cursor: pointer;
    color: var(--color-text-light); /* text-white */
    font-weight: 500; /* font-medium */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
}

.faq-bullet {
    width: 0.5rem; /* w-2 */
    height: 0.5rem; /* h-2 */
    background-color: white;
    border-radius: 50%;
    flex-shrink: 0;
}

.faq-question-text {
    flex-grow: 1;
}

.faq-caret-red {
    width: 1.25rem; /* w-5 */
    height: 1.25rem; /* h-5 */
    color: var(--color-text-light); /* text-white */
    flex-shrink: 0;
    transition: transform 0.3s ease-in-out;
}

.faq-item-red-expandable.active .faq-caret-red {
    transform: rotate(180deg);
}

.faq-answer-red-expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
    background-color: white;
}

.faq-item-red-expandable.active .faq-answer-red-expandable {
    max-height: 1000px;
}

.faq-answer-list {
    list-style: none;
    padding: 1rem 1.25rem 1rem 2.5rem; /* px-5 py-4 pl-10 */
    margin: 0;
}

.faq-answer-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: var(--color-gray-900); /* text-gray-900 */
    font-size: 0.875rem; /* text-sm */
    line-height: 1.5;
}

.faq-answer-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--color-gray-900);
    font-weight: bold;
}

.faq-answer-list li:last-child {
    margin-bottom: 0;
}

/* Card Drop Shadow Class */
.card-shadow {
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.05) !important;
    }

