/* Typography adjustments */
body {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
}

h1, h2, h3, h4 {
    color: #1A3B2B;
    line-height: 1.3;
}

/* Microinteractions */
.btn-primary {
    transition: all 300ms ease-in-out;
}

.btn-primary:hover {
    transform: scale(0.98);
    background-color: #12291E;
}

.card-hover {
    transition: all 300ms ease-in-out;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,59,43,0.08);
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(15px);
    transition: all 400ms ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hide scrollbar for horizontal scroll (Testimonials) */
.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}