@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  /* Colors carefully selected for high contrast and modern look */
  --primary-color: #27AE60;   /* Fresh green */
  --secondary-color: #1E8449; /* Darker green */
  --accent-color: #F39C12;    /* Vibrant orange */
  --light-color: #ECF0F1;     /* Light grayish */
  --dark-color: #2C3E50;      /* Dark navy/slate */
  --gradient-primary: linear-gradient(135deg, #27AE60 0%, #1E8449 100%);
  --hover-color: #229954;
  --background-color: #F8F9FA; /* Almost white background for neumorphism */
  --text-color: #34495E;
  --border-color: rgba(39, 174, 96, 0.15);
  --divider-color: rgba(44, 62, 80, 0.1);
  --shadow-color: rgba(44, 62, 80, 0.08);
  --highlight-color: #E67E22; /* Complementary orange/red */
  
  --main-font: 'Nunito', sans-serif;
  --alt-font: 'Work Sans', sans-serif;
}

/* Base Styles & Neumorphism Helpers */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Hover effects */
a.hover\:text-underline:hover {
    text-decoration: underline;
    color: var(--primary-color) !important;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 20px var(--shadow-color), -10px -10px 20px #ffffff;
}

.faq-item {
    transition: transform 0.2s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-color);
}

/* Mobile Navigation Checkbox Hack (No JS) */
.hamburger-menu {
    display: none !important;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block !important;
    }
    
    .navigation {
        display: none;
        width: 100%;
        text-align: center;
        padding-top: 20px;
        padding-bottom: 10px;
    }
    
    .navigation ul {
        flex-direction: column;
        width: 100%;
        gap: 15px !important;
    }
    
    #navbar-toggle:checked ~ .navigation {
        display: block;
    }
    
    footer div {
        flex-direction: column;
        text-align: center;
    }
}