/* Варіант 3: style.css */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.1/css/all.min.css');

:root {
  --primary-color: #344CB7;
  --secondary-color: #577BC1;
  --accent-color: #E01171;
  --light-color: #F2F2F2;
  --dark-color: #0F0766;
  --gradient-primary: linear-gradient(135deg, #344CB7 0%, #577BC1 100%);
  --hover-color: #2a3d94;
  --background-color: #EAE4D5;
  --text-color: #333333;
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(224, 17, 113, 0.3);
  --shadow-color: rgba(15, 7, 102, 0.1);
  --highlight-color: #FFEB00;
  --main-font: 'Montserrat', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

body {
    font-family: var(--alt-font);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    background-color: var(--background-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--main-font);
    margin: 0;
    font-weight: 700;
}

/* Neuromorphism Light/Colorful Theme Styles */
.neuro-card {
    background: var(--background-color);
    border-radius: 20px;
    box-shadow: 8px 8px 16px rgba(0,0,0,0.06), -8px -8px 16px #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.neuro-card:hover {
    box-shadow: 10px 10px 20px rgba(0,0,0,0.08), -10px -10px 20px #ffffff;
    transform: translateY(-3px);
}

.faq-item {
    transition: all 0.3s ease;
}

.faq-item:hover {
    background-color: #ffffff;
    border-left: 4px solid var(--accent-color);
}

/* Header & Menu */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.hover-underline {
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--highlight-color);
    transition: width 0.3s;
}

.hover-underline:hover::after {
    width: 100%;
}

.hover-underline:hover {
    color: var(--highlight-color) !important;
}

/* CTA Buttons */
.cta-button {
    transition: all 0.3s ease;
    box-shadow: 4px 4px 10px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: scale(1.03);
    box-shadow: 6px 6px 15px rgba(0,0,0,0.3);
    filter: brightness(1.1);
}

/* Mobile Navigation Hack */
@media (max-width: 768px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
        background-color: var(--primary-color);
        padding: 20px 0;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    }
    .hamburger {
        display: block;
        cursor: pointer;
    }
    #menu-btn:checked ~ .navigation {
        display: block;
    }
    .navigation ul {
        flex-direction: column;
        gap: 20px;
    }
}