/* Saathi Legal Assistant - Old Money Theme */
/* Color Palette: Deep Navy (#1a2332), Rich Brown (#8b4513), Gold/Cream (#f4f1e8), Charcoal (#2c2c2c) */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Android Chrome Address Bar Color */
body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #faf8f5;
    background: linear-gradient(135deg, #1a2332 0%, #2c2c2c 50%, #8b4513 100%);
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    /* Prevent horizontal scroll on mobile */
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    text-align: center;
    color: #f4f1e8;
    padding: 40px 0;
}

.logo {
    font-size: 3em;
    margin-bottom: 10px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.3));
}

.header h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 400;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
}

.header p {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.main-content {
    background: rgba(244, 241, 232, 0.95);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    color: #2c2c2c;
    border: 1px solid rgba(139, 69, 19, 0.3);
}

/* User Details Section */
.name-section {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(26, 35, 50, 0.08);
    border-radius: 15px;
    border: 2px solid rgba(139, 69, 19, 0.6);
    transition: all 0.3s ease;
}

.name-section:hover {
    border-color: rgba(139, 69, 19, 0.8);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.name-section h2 {
    color: #1a2332;
    margin-bottom: 20px;
    font-size: 1.8em;
    font-weight: bold;
    text-align: center;
}

.name-section p {
    color: #6c5b3f;
    margin-bottom: 25px;
    font-size: 1.1em;
    font-style: italic;
}

.name-input-group {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.name-input {
    padding: 14px 20px;
    border: 2px solid #8b4513;
    border-radius: 25px;
    font-size: 16px;
    width: 280px;
    text-align: center;
    background: rgba(244, 241, 232, 0.95);
    color: #2c2c2c;
    font-family: 'Georgia', serif;
    transition: all 0.3s ease;
}

.name-input::placeholder {
    color: rgba(44, 44, 44, 0.6);
    font-style: italic;
}

.name-input:focus {
    outline: none;
    border-color: #1a2332;
    box-shadow: 0 0 0 3px rgba(26, 35, 50, 0.2);
    transform: translateY(-1px);
}

.save-name-btn {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4f1e8;
    border: none;
    padding: 14px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.save-name-btn:hover {
    background: linear-gradient(135deg, #a0522d 0%, #8b4513 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
}

.save-name-btn:active {
    transform: translateY(0);
}

.welcome-message {
    color: #8b4513;
    font-weight: bold;
    margin-top: 20px;
    font-size: 1.1em;
    padding: 15px;
    background: rgba(139, 69, 19, 0.1);
    border-radius: 10px;
    border-left: 4px solid #8b4513;
}

/* Legal Disclaimer */
.disclaimer {
    background: linear-gradient(135deg, #f4f1e8 0%, #ede7d3 100%);
    border: 3px solid #8b4513;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.disclaimer-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

.disclaimer h3 {
    color: #1a2332;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.disclaimer p {
    color: #2c2c2c;
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer strong {
    font-weight: bold;
    color: #8b4513;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.feature-card {
    background: linear-gradient(135deg, rgba(244, 241, 232, 0.9) 0%, rgba(237, 231, 211, 0.9) 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(139, 69, 19, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(139, 69, 19, 0.2);
    border-color: rgba(139, 69, 19, 0.6);
}

.feature-icon {
    font-size: 2.8em;
    margin-bottom: 18px;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-card h3 {
    color: #1a2332;
    margin-bottom: 15px;
    font-size: 1.3em;
    font-weight: bold;
}

.feature-card p {
    color: #6c5b3f;
    font-size: 1em;
    line-height: 1.5;
}

/* Quick Action Buttons */
.quick-action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4f1e8;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.5);
    color: #f4f1e8;
    text-decoration: none;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
}

.start-consulting-btn {
    background: linear-gradient(135deg, #1a2332 0%, #2c2c2c 50%, #8b4513 100%);
    color: #f4f1e8;
    border: none;
    padding: 22px 55px;
    font-size: 1.4em;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 35px rgba(26, 35, 50, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    font-family: 'Georgia', serif;
    position: relative;
    overflow: hidden;
}

.start-consulting-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(244, 241, 232, 0.2), transparent);
    transition: left 0.5s ease;
}

.start-consulting-btn:hover::before {
    left: 100%;
}

.start-consulting-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(26, 35, 50, 0.5);
}

.start-consulting-btn:active {
    transform: translateY(-2px);
}

.start-consulting-btn:disabled {
    background: linear-gradient(135deg, #95a5a6 0%, #7f8c8d 100%);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 4px 15px rgba(149, 165, 166, 0.3);
}

/* Footer */
.footer {
    text-align: center;
    color: #f4f1e8;
    padding: 30px 0;
    opacity: 0.9;
    border-top: 1px solid rgba(244, 241, 232, 0.2);
    margin-top: 40px;
}

.footer p {
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Loading Animation */
.loading {
    display: none;
    text-align: center;
    color: #1a2332;
    margin-top: 20px;
}

.spinner {
    border: 4px solid rgba(26, 35, 50, 0.2);
    border-top: 4px solid #1a2332;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1.5s linear infinite;
    margin: 20px auto;
}

/* Device Compatibility Notice */
.device-notice {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.device-notice h3 {
    color: #ffc107;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.device-notice a {
    color: #ffc107;
    text-decoration: underline;
    font-weight: bold;
}

.device-notice a:hover {
    color: #ffdb4d;
}

.device-tips {
    text-align: left;
    margin-top: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 15px;
    border-radius: 8px;
}

.device-tips ul {
    margin-top: 10px;
    padding-left: 20px;
}

.device-tips li {
    margin: 5px 0;
    color: #f4f1e8;
}

/* Onboarding Wizard */
.onboarding-wizard {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.wizard-content {
    position: relative;
    background: linear-gradient(135deg, #1a2332 0%, #2c2c2c 50%, #8b4513 100%);
    border: 2px solid #8b4513;
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.wizard-content h2 {
    color: #f4f1e8;
    margin-bottom: 20px;
    font-size: 2em;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.step-card {
    background: rgba(244, 241, 232, 0.1);
    border: 2px solid rgba(139, 69, 19, 0.3);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-card.active {
    border-color: #8b4513;
    background: rgba(139, 69, 19, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 69, 19, 0.3);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #f4f1e8;
    border-radius: 50%;
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 15px;
}

.step-card h3 {
    color: #f4f1e8;
    margin-bottom: 10px;
    font-size: 1.3em;
}

.step-card p {
    color: rgba(244, 241, 232, 0.8);
    line-height: 1.5;
}

.wizard-actions {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.wizard-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.wizard-btn.primary {
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #f4f1e8;
}

.wizard-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 69, 19, 0.4);
}

.wizard-btn.secondary {
    background: transparent;
    color: #f4f1e8;
    border: 2px solid rgba(244, 241, 232, 0.3);
}

.wizard-btn.secondary:hover {
    border-color: rgba(244, 241, 232, 0.6);
    background: rgba(244, 241, 232, 0.1);
}

/* Feature Card CTAs */
.feature-cta {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    color: #f4f1e8;
    border-radius: 8px;
    font-weight: bold;
    font-size: 0.9em;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Improved Button Styling */
.start-consulting-btn {
    background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
    color: #f4f1e8;
    border: none;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.3);
    position: relative;
    overflow: hidden;
}

.start-consulting-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.start-consulting-btn:hover::before {
    left: 100%;
}

.start-consulting-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.4);
}

.save-name-btn {
    background: linear-gradient(135deg, #2c5530, #3d7341);
    color: #f4f1e8;
    border: 2px solid transparent;
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.save-name-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
    border-color: rgba(244, 241, 232, 0.2);
}

/* Loading Indicators */
.loading-spinner {
    display: none;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(139, 69, 19, 0.1);
    border-left: 4px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-text {
    margin-left: 15px;
    color: #f4f1e8;
    font-size: 1.1em;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Loading states for buttons */
.btn-loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    color: #f4f1e8;
}

/* Loading overlay for sections */
.section-loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

.section-loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    border-radius: inherit;
    z-index: 10;
}

.section-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid rgba(139, 69, 19, 0.1);
    border-top: 3px solid #8b4513;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    z-index: 11;
}

/* Success/Error Message Styling */
.message-popup {
    position: fixed;
    top: 20px;
    right: 20px;
    max-width: 350px;
    padding: 20px;
    border-radius: 15px;
    color: #f4f1e8;
    font-weight: bold;
    z-index: 1000;
    animation: slideInRight 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.message-popup.success {
    background: linear-gradient(135deg, #2c5530, #3d7341);
    border: 2px solid #4a7c59;
}

.message-popup.error {
    background: linear-gradient(135deg, #8b2635, #a0404d);
    border: 2px solid #b85450;
}

.message-popup.warning {
    background: linear-gradient(135deg, #b8860b, #daa520);
    border: 2px solid #ffd700;
    color: #2c2c2c;
}

.message-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5em;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.message-close:hover {
    opacity: 1;
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .container {
        padding: 10px;
        margin: 0;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 1.8em;
    }
    
    .start-consulting-btn {
        width: 100%;
        font-size: 1.1em;
        padding: 16px 20px;
    }
    
    .wizard-content {
        padding: 20px;
        max-width: 95%;
    }
    
    .wizard-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wizard-actions {
        flex-direction: column;
        gap: 10px;
    }
    
    .wizard-btn {
        width: 100%;
    }
    
    .message-popup {
        max-width: 90%;
        right: 5%;
        top: 10px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 15px 10px;
    }
    
    .header h1 {
        font-size: 1.5em;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .feature-card h3 {
        font-size: 1.2em;
    }
    
    .intro-section h2 {
        font-size: 1.5em;
    }
    
    .intro-section p {
        font-size: 1em;
    }
    
    .wizard-content h2 {
        font-size: 1.5em;
    }
    
    .step-card h3 {
        font-size: 1.1em;
    }
}

/* Fix for overlapping elements */
.feature-card {
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.feature-card:hover {
    z-index: 2;
    transform: translateY(-5px) scale(1.02);
}

/* Improved accessibility */
.wizard-btn:focus,
.start-consulting-btn:focus,
.save-name-btn:focus {
    outline: 3px solid rgba(139, 69, 19, 0.6);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card {
        border-color: #ffffff;
        background: rgba(0, 0, 0, 0.8);
    }
    
    .wizard-content {
        border-color: #ffffff;
        background: rgba(0, 0, 0, 0.9);
    }
    
    .step-card {
        border-color: #ffffff;
    }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .feature-card:hover {
        transform: none;
    }
    
    .start-consulting-btn:hover {
        transform: none;
    }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness & Android Optimization */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .header {
        padding: 30px 0;
    }

    .header h1 {
        font-size: 2.2em;
    }

    .header p {
        font-size: 1.1em;
        padding: 0 10px;
    }

    .logo {
        font-size: 2.5em;
    }

    .main-content {
        padding: 25px;
        margin: 20px 0;
        border-radius: 15px;
    }

    .name-section {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .name-section h2 {
        font-size: 1.6em;
    }

    .name-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .name-input {
        width: 100%;
        max-width: 320px;
        font-size: 16px; /* Prevents zoom on iOS */
    }

    .save-name-btn {
        width: 100%;
        max-width: 320px;
        padding: 16px 20px;
    }

    .disclaimer {
        padding: 25px 20px;
        margin-bottom: 30px;
    }

    .disclaimer h3 {
        font-size: 1.2em;
    }

    .disclaimer p {
        font-size: 0.95em;
    }

    .start-consulting-btn {
        padding: 18px 40px;
        font-size: 1.2em;
        letter-spacing: 1px;
        width: 100%;
        max-width: 320px;
    }

    .features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .feature-icon {
        font-size: 2.5em;
    }

    .welcome-message {
        font-size: 1em;
        padding: 12px;
    }
}

/* Extra small devices (phones, 480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 10px;
    }

    .header h1 {
        font-size: 1.8em;
    }

    .header p {
        font-size: 1em;
    }

    .main-content {
        padding: 20px 15px;
    }

    .name-section {
        padding: 20px 15px;
    }

    .name-section h2 {
        font-size: 1.4em;
    }

    .name-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 12px 16px;
    }

    .disclaimer {
        padding: 20px 15px;
    }

    .feature-card {
        padding: 20px 15px;
    }

    .start-consulting-btn {
        font-size: 1.1em;
        padding: 16px 30px;
    }
}

/* Touch-friendly improvements for Android */
@media (hover: none) and (pointer: coarse) {
    .name-input:focus {
        transform: none;
    }

    .feature-card:hover {
        transform: none;
        box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
    }

    .start-consulting-btn:hover {
        transform: none;
    }

    .save-name-btn:hover {
        transform: none;
    }
}

/* High DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header h1,
    .disclaimer h3 {
        text-rendering: optimizeLegibility;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .main-content {
        background: rgba(26, 35, 50, 0.95);
        color: #f4f1e8;
    }

    .name-input {
        background: rgba(44, 44, 44, 0.8);
        color: #f4f1e8;
        border-color: #8b4513;
    }

    .name-input::placeholder {
        color: rgba(244, 241, 232, 0.6);
    }

    .feature-card {
        background: rgba(26, 35, 50, 0.8);
        color: #f4f1e8;
    }

    .feature-card h3 {
        color: #f4f1e8;
    }

    .feature-card p {
        color: rgba(244, 241, 232, 0.8);
    }
}
