/* FAQ Animation */
.faq-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.faq-item.active .faq-content {
    max-height: 200px; /* Approximate max height */
    opacity: 1;
}
.faq-item.active .faq-icon {
    transform: rotate(180deg);
}
.sticky-form {
    position: sticky;
    top: 100px;
}
.pattern-grid {
    background-image: linear-gradient(#e5e7eb 1px, transparent 1px), linear-gradient(to right, #e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Tab Transition */
.license-content {
    animation: fadeIn 0.5s ease-in-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.pattern-dots {
    background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
    background-size: 20px 20px;
}
.card-hover-effect {
transition: all 0.3s ease;
}
.card-hover-effect:hover {
transform: translateY(-5px);
box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.sticky-sidebar {
position: sticky;
top: 100px;
}
/* Blog Content Typography */
.blog-content p {
    line-height: 2.2;
    margin-bottom: 1.5rem;
    color: #374151; /* gray-700 */
    font-size: 1.05rem;
    text-align: justify;
}
.blog-content h2 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #111827; /* gray-900 */
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    position: relative;
    padding-right: 1rem;
}
.blog-content h2::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0.25rem;
    bottom: 0.25rem;
    width: 4px;
    background-color: #3ad77e; /* brand-500 */
    border-radius: 2px;
}
.blog-content h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937; /* gray-800 */
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-content ul {
    list-style-type: none;
    margin-bottom: 1.5rem;
    padding-right: 1rem;
}
.blog-content ul li {
    position: relative;
    padding-right: 1.5rem;
    margin-bottom: 0.75rem;
    color: #4b5563;
}
.blog-content ul li::before {
    content: '\f00c'; /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 4px;
    color: #3ad77e;
    font-size: 0.8rem;
}
.highlight-box {
    background-color: #effdf5;
    border-right: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #0F172A;
}

/* Reading Progress Bar */
#progress-bar {
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #3ad77e, #f59e0b);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transition: width 0.1s;
}
