@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

:root {
  --primary-color: #344CB7;
  --secondary-color: #577BC1;
  --accent-color: #577BC1;
  --light-color: #F2F2F2;
  --dark-color: #000957;
  --background-color: #F2F2F2;
  --text-color: #333333;
  --border-color: rgba(52, 76, 183, 0.2);
  --divider-color: rgba(0, 9, 87, 0.1);
  --shadow-color: rgba(209, 209, 209, 0.8);
  --highlight-color: #FFEB00;
  --main-font: 'Oswald', sans-serif;
  --alt-font: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.feature-card {
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.02);
}

.btn:hover {
    background-color: var(--highlight-color) !important;
    color: var(--dark-color) !important;
}

button[type="submit"]:hover {
    background-color: var(--highlight-color) !important;
    color: var(--dark-color) !important;
}

details > summary::-webkit-details-marker {
    display: none;
}
details > summary {
    list-style: none;
    position: relative;
    padding-right: 40px;
}
details > summary::after {
    content: '\f067';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: var(--light-color);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: inset 2px 2px 5px #d1d1d1, inset -2px -2px 5px #ffffff;
}
details[open] > summary::after {
    content: '\f068';
}

@media (max-width: 768px) {
    .navigation {
        display: none;
        width: 100%;
        position: absolute;
        top: 84px;
        left: 0;
        background-color: var(--dark-color);
        text-align: center;
        padding: 40px 0;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }
    .navigation ul {
        flex-direction: column;
        gap: 25px !important;
    }
    #mobile-menu:checked ~ .navigation {
        display: block;
    }
    .hamburger {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
}