@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

:root {
  --primary-color: #2980B9;
  --secondary-color: #27AE60;
  --accent-color: #16A085;
  --light-color: #EBF5FB;
  --dark-color: #1A252F;
  --gradient-primary: linear-gradient(135deg, #2980B9 0%, #16A085 100%);
  --hover-color: #2471A3;
  --background-color: #FDFEFE;
  --text-color: #2C3E50;
  --border-color: rgba(41, 128, 185, 0.2);
  --divider-color: rgba(39, 174, 96, 0.1);
  --shadow-color: rgba(26, 37, 47, 0.1);
  --highlight-color: #F1C40F;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Lato', sans-serif;
}

header nav ul li a { transition: 0.3s; }
.logo img { transition: transform 0.3s ease; }
.logo img:hover { transform: scale(1.05); }

/* Neumorphism effect for cards */
section#features div, section#testimonials div, section#faq div {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #ffffff;
    transition: all 0.3s ease;
}

section#features div:hover {
    transform: translateY(-5px);
    box-shadow: 12px 12px 20px #c2ccd9, -12px -12px 20px #ffffff;
}

#menu-toggle:checked ~ nav {
    display: block !important;
}

@media (max-width: 768px) {
    header nav { display: none; width: 100%; text-align: center; }
    header nav ul { flex-direction: column; margin-top: 1rem; }
    header nav ul li { margin-bottom: 0.5rem; }
}