/**
 * ARIA Website Chat Widget Styles
 * Project Milk Carton - Ocean Glass Design System
 */

/* Container */
#aria-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Floating Bubble */
.aria-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #03507c, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    animation: aria-pulse 2s infinite;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
}

.aria-bubble:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(124, 58, 237, 0.5);
}

.aria-bubble img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.aria-bubble-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #c62828;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

@keyframes aria-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(124, 58, 237, 0.6); }
}

/* Chat Widget */
.aria-widget {
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 550px;
    max-height: calc(100vh - 100px);
    background: rgba(73, 131, 189, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: aria-slide-up 0.3s ease;
}

@keyframes aria-slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header */
.aria-header {
    background: linear-gradient(135deg, #03507c, #255f7c);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.aria-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    object-fit: cover;
}

.aria-header-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aria-name {
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.aria-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.aria-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.aria-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Messages Container */
.aria-messages {
    flex: 1;
    overflow-y: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aria-messages::-webkit-scrollbar {
    width: 6px;
}

.aria-messages::-webkit-scrollbar-track {
    background: transparent;
}

.aria-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

/* Message Bubbles */
.aria-message {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
    animation: aria-message-in 0.3s ease;
}

@keyframes aria-message-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.aria-message-aria {
    background: rgba(255, 255, 255, 0.12);
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.aria-message-user {
    background: linear-gradient(135deg, #03507c, #255f7c);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.aria-message a {
    color: #7dd3fc;
    text-decoration: underline;
}

.aria-message a:hover {
    color: #bae6fd;
}

.aria-message ul {
    margin: 8px 0;
    padding-left: 20px;
}

.aria-message li {
    margin: 4px 0;
}

.aria-message strong {
    font-weight: 600;
}

/* Loading State */
.aria-loading {
    opacity: 0.7;
}

.aria-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.aria-typing::after {
    content: '';
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: aria-blink 1s infinite;
}

@keyframes aria-blink {
    0%, 50%, 100% { opacity: 0.3; }
    25% { opacity: 1; }
}

/* Data Display */
.aria-data-action {
    margin-top: 10px;
}

.aria-download-btn {
    display: inline-block;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    color: white !important;
    text-decoration: none !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aria-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.aria-data-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.aria-child-card {
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
}

.aria-child-card a {
    color: #7dd3fc !important;
}

/* Quick Actions */
.aria-quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    padding: 10px 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.1);
}

.aria-quick-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.aria-quick-btn:hover {
    background: rgba(124, 58, 237, 0.4);
    border-color: rgba(124, 58, 237, 0.6);
    transform: translateY(-1px);
}

/* Input Area */
.aria-input-container {
    display: flex;
    gap: 8px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.15);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.aria-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 10px 16px;
    color: white;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.aria-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.aria-input:focus {
    border-color: rgba(124, 58, 237, 0.5);
    background: rgba(255, 255, 255, 0.15);
}

.aria-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.aria-send:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.aria-send:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Footer */
.aria-footer {
    padding: 8px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(0, 0, 0, 0.1);
}

.aria-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.aria-footer a:hover {
    color: white;
}

/* Greeting Preview Bubble */
.aria-greeting-preview {
    position: absolute;
    bottom: 70px;
    right: 0;
    max-width: 280px;
    animation: aria-greeting-slide 0.4s ease;
}

@keyframes aria-greeting-slide {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.aria-greeting-content {
    background: linear-gradient(135deg, rgba(3, 80, 124, 0.95), rgba(37, 95, 124, 0.95));
    backdrop-filter: blur(10px);
    border-radius: 16px 16px 4px 16px;
    padding: 14px 16px;
    color: white;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.aria-greeting-text {
    display: block;
    min-height: 1.5em;
}

.aria-greeting-close {
    position: absolute;
    top: 6px;
    right: 8px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.aria-greeting-close:hover {
    color: white;
}

.aria-greeting-arrow {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid rgba(37, 95, 124, 0.95);
}

/* Bubble Attention Animation */
.aria-bubble-attention {
    animation: aria-attention 0.6s ease infinite;
}

@keyframes aria-attention {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

/* Bubble Pulse Ring */
.aria-bubble-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.6);
    opacity: 0;
    pointer-events: none;
}

.aria-bubble-pulse-active .aria-bubble-pulse {
    animation: aria-pulse-ring 1.5s ease-out infinite;
}

@keyframes aria-pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Status Dot (Online Indicator) */
.aria-status-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 6px;
    animation: aria-status-pulse 2s ease infinite;
}

@keyframes aria-status-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34, 197, 94, 0); }
}

/* Typing Indicator (Three Dots) */
.aria-typing-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 0;
}

.aria-typing-indicator span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: aria-typing-bounce 1.4s ease-in-out infinite;
}

.aria-typing-indicator span:nth-child(1) { animation-delay: 0s; }
.aria-typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.aria-typing-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes aria-typing-bounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-8px); }
}

/* Message Typing State */
.aria-message-typing {
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    animation: aria-cursor-blink 0.7s step-end infinite;
}

@keyframes aria-cursor-blink {
    0%, 100% { border-color: rgba(255, 255, 255, 0.7); }
    50% { border-color: transparent; }
}

/* Investigation Card */
.aria-investigation-card {
    background: rgba(124, 58, 237, 0.15);
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    border-left: 3px solid #7c3aed;
}

.aria-investigation-card a {
    color: #c4b5fd !important;
    text-decoration: none;
}

.aria-investigation-card a:hover {
    color: #e9d5ff !important;
    text-decoration: underline;
}

/* Quick Actions Animation */
.aria-quick-actions {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.aria-quick-actions-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Widget Open Animation */
.aria-widget-open {
    animation: aria-widget-bounce 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes aria-widget-bounce {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    #aria-container {
        bottom: 10px;
        right: 10px;
    }

    .aria-widget {
        width: calc(100vw - 20px);
        height: calc(100vh - 80px);
        max-height: none;
        border-radius: 12px;
    }

    .aria-bubble {
        width: 50px;
        height: 50px;
    }

    .aria-bubble img {
        width: 32px;
        height: 32px;
    }

    .aria-quick-actions {
        justify-content: center;
    }

    .aria-greeting-preview {
        max-width: 220px;
        right: -10px;
    }

    .aria-greeting-content {
        font-size: 13px;
        padding: 12px 14px;
    }
}

/* Dark mode support (already dark, but ensure contrast) */
@media (prefers-color-scheme: dark) {
    .aria-widget {
        background: rgba(30, 60, 90, 0.85);
    }
}

/* ============================================
   ARIA EMBEDDED SECRETARY SECTION
   ============================================ */

.aria-secretary-section {
    padding: 2rem 0 3rem;
}

.aria-embedded-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header with Avatar */
.aria-embedded-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    animation: aria-embedded-fadein 0.6s ease;
}

@keyframes aria-embedded-fadein {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.aria-embedded-avatar-wrapper {
    position: relative;
    flex-shrink: 0;
}

.aria-embedded-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(124, 58, 237, 0.6);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
    object-fit: cover;
    animation: aria-avatar-glow 3s ease-in-out infinite;
}

@keyframes aria-avatar-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(124, 58, 237, 0.4); }
    50% { box-shadow: 0 0 50px rgba(124, 58, 237, 0.7); }
}

.aria-embedded-status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 16px;
    height: 16px;
    background: #22c55e;
    border-radius: 50%;
    border: 3px solid rgba(30, 60, 90, 0.9);
    animation: aria-status-pulse 2s ease infinite;
}

.aria-embedded-intro h2 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.aria-embedded-role {
    margin: 0.25rem 0 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Chat Container */
.aria-embedded-chat {
    background: rgba(30, 60, 90, 0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: aria-embedded-slidein 0.8s ease;
}

@keyframes aria-embedded-slidein {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Messages Area */
.aria-embedded-messages {
    min-height: 150px;
    max-height: 300px;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.aria-embedded-messages::-webkit-scrollbar {
    width: 6px;
}

.aria-embedded-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.aria-embedded-message {
    background: rgba(255, 255, 255, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 90%;
    animation: aria-message-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes aria-message-pop {
    from { opacity: 0; transform: scale(0.9) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.aria-embedded-message.user {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.aria-embedded-message.aria {
    background: rgba(255, 255, 255, 0.1);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.aria-embedded-message a {
    color: #7dd3fc;
    text-decoration: underline;
}

/* Quick Actions */
.aria-embedded-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.aria-embedded-quick-btn {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(124, 58, 237, 0.4);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: inherit;
}

.aria-embedded-quick-btn:hover {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.5), rgba(147, 51, 234, 0.4));
    border-color: rgba(124, 58, 237, 0.7);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(124, 58, 237, 0.3);
}

.aria-embedded-quick-btn i {
    font-size: 0.85rem;
}

/* Input Area */
.aria-embedded-input-area {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem 1.5rem;
    background: rgba(0, 0, 0, 0.1);
}

#aria-embedded-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 0.9rem 1.25rem;
    color: white;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: all 0.3s ease;
}

#aria-embedded-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#aria-embedded-input:focus {
    border-color: rgba(124, 58, 237, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.aria-embedded-send-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #9333ea);
    border: none;
    color: white;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aria-embedded-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 25px rgba(124, 58, 237, 0.5);
}

.aria-embedded-send-btn:active {
    transform: scale(0.95);
}

/* Service Cards */
.aria-embedded-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
}

.aria-service-card {
    background: rgba(30, 60, 90, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.aria-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.aria-service-badge {
    position: absolute;
    top: -8px;
    right: 15px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.aria-service-paid .aria-service-badge {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.aria-service-card h4 {
    margin: 0.5rem 0 0.5rem;
    font-size: 1.1rem;
    color: white;
}

.aria-service-card p {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.aria-service-card .btn {
    width: 100%;
    justify-content: center;
}

/* Typing Indicator */
.aria-embedded-typing {
    display: flex;
    gap: 4px;
    padding: 0.5rem;
}

.aria-embedded-typing span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: aria-typing-bounce 1.4s ease-in-out infinite;
}

.aria-embedded-typing span:nth-child(2) { animation-delay: 0.2s; }
.aria-embedded-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .aria-embedded-header {
        flex-direction: column;
        text-align: center;
    }

    .aria-embedded-avatar {
        width: 70px;
        height: 70px;
    }

    .aria-embedded-intro h2 {
        font-size: 1.5rem;
    }

    .aria-embedded-quick-actions {
        justify-content: center;
    }

    .aria-embedded-quick-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .aria-embedded-services {
        grid-template-columns: 1fr;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .aria-embedded-container {
        padding: 1rem;
        margin: 0 0.5rem;
    }

    .aria-embedded-avatar {
        width: 60px;
        height: 60px;
    }

    .aria-embedded-intro h2 {
        font-size: 1.25rem;
    }

    .aria-embedded-role {
        font-size: 0.85rem;
    }

    .aria-embedded-messages {
        max-height: 250px;
        min-height: 150px;
    }

    .aria-embedded-quick-actions {
        gap: 0.4rem;
        flex-wrap: wrap;
    }

    .aria-embedded-quick-btn {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .aria-embedded-input-area input {
        font-size: 14px; /* Prevents zoom on iOS */
    }

    .aria-service-card {
        padding: 1rem;
    }

    .aria-service-card h4 {
        font-size: 1rem;
    }

    .aria-service-card p {
        font-size: 0.85rem;
    }
}
