/* Custom styles that extend Tailwind */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    line-height: 1.6;
}
/* Button styles */
a[href].btn, button.btn {
    transition: all 0.3s ease;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    min-width: 200px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a[href].btn:hover, button.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Button text hierarchy */
.btn .btn-main-text {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.btn .btn-sub-text {
    font-size: 0.875rem;
    font-weight: 500;
    opacity: 0.9;
    color: white;
    background-color: #1e40af;
    padding: 0.15rem 0.5rem;
    border-radius: 0.25rem;
    margin: 0.15rem 0;
}
.btn .btn-small-text {
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Green button variant */
.btn-green {
    background-color: #10b981;
    color: white;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}
.btn-green:hover {
    background-color: #059669;
}

/* White button variant */
.btn-white {
    background-color: white;
    color: #1e40af;
}

.btn-white:hover {
    background-color: #f8fafc;
}
/* Responsive adjustments */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .bg-white.rounded-xl.shadow-lg .flex.flex-wrap.justify-center.gap-4 a {
        width: 100%;
    }
}
/* Custom pulse animation for attention */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}
.pulse {
    animation: pulse 2s infinite;
}
/* Image Styles */
img {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.01);
}

/* FAQ Section Styles */
details[open] summary ~ * {
    animation: fadeIn 0.3s ease-in-out;
}

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

details summary::-webkit-details-marker {
    display: none;
}

details summary {
    list-style: none;
}

details summary:focus {
    outline: none;
}
