


.font-barlow {
    font-family: 'Barlow', sans-serif;
}

.font-pt-serif {
    font-family: 'PT Serif', serif;
}


.neomorphic-card {
    background: #f5f7fa;
    border-radius: 16px;
    box-shadow: 8px 8px 16px rgba(174, 174, 192, 0.4), 
                -8px -8px 16px rgba(255, 255, 255, 0.8);
    overflow: hidden;
    transition: all 0.3s ease;
}

.neomorphic-card:hover {
    box-shadow: 10px 10px 20px rgba(174, 174, 192, 0.5), 
                -10px -10px 20px rgba(255, 255, 255, 0.9);
}

.neomorphic-card-sm {
    background: #f5f7fa;
    border-radius: 12px;
    box-shadow: 5px 5px 10px rgba(174, 174, 192, 0.3), 
                -5px -5px 10px rgba(255, 255, 255, 0.7);
    overflow: hidden;
    transition: all 0.3s ease;
}

.neomorphic-card-sm:hover {
    box-shadow: 6px 6px 12px rgba(174, 174, 192, 0.4), 
                -6px -6px 12px rgba(255, 255, 255, 0.8);
}


.btn-primary {
    display: inline-block;
    background-color: #2A5CAA;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), 
                -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background-color: #1E3F7A;
    transform: translateY(-2px);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15), 
                -3px -3px 8px rgba(255, 255, 255, 0.1);
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1), 
                -1px -1px 4px rgba(255, 255, 255, 0.05);
}

.btn-primary-lg {
    display: inline-block;
    background-color: #2A5CAA;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), 
                -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.btn-primary-lg:hover {
    background-color: #1E3F7A;
    transform: translateY(-2px);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15), 
                -3px -3px 8px rgba(255, 255, 255, 0.1);
}

.btn-primary-sm {
    display: inline-block;
    background-color: #2A5CAA;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), 
                -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.btn-primary-sm:hover {
    background-color: #1E3F7A;
    transform: translateY(-1px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15), 
                -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.btn-secondary-sm {
    display: inline-block;
    background-color: #4A5568;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1), 
                -2px -2px 4px rgba(255, 255, 255, 0.1);
}

.btn-secondary-sm:hover {
    background-color: #2D3748;
    transform: translateY(-1px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.15), 
                -2px -2px 6px rgba(255, 255, 255, 0.1);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #2A5CAA;
    border: 2px solid #2A5CAA;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline:hover {
    background-color: #2A5CAA;
    color: white;
    transform: translateY(-2px);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-outline-sm {
    display: inline-block;
    background-color: transparent;
    color: #2A5CAA;
    border: 1px solid #2A5CAA;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-outline-sm:hover {
    background-color: #2A5CAA;
    color: white;
    transform: translateY(-1px);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

.btn-white-lg {
    display: inline-block;
    background-color: white;
    color: #2A5CAA;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-white-lg:hover {
    background-color: #f5f7fa;
    transform: translateY(-2px);
    box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.15);
}

.btn-primary-mobile {
    display: block;
    background-color: #2A5CAA;
    color: white;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary-mobile:hover {
    background-color: #1E3F7A;
}


.nav-link {
    color: #4A5568;
    font-weight: 500;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #2A5CAA;
    border-bottom: 2px solid #2A5CAA;
}

.nav-link.active {
    color: #2A5CAA;
    border-bottom: 2px solid #2A5CAA;
}

.mobile-nav-link {
    color: #4A5568;
    font-weight: 500;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    display: block;
}

.mobile-nav-link:hover {
    color: #2A5CAA;
}

.mobile-nav-link.active {
    color: #2A5CAA;
    font-weight: 600;
}


.form-input {
    display: block;
    width: 100%;
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
    background-color: #F8FAFC;
    box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #2A5CAA;
    box-shadow: 0 0 0 3px rgba(42, 92, 170, 0.2), inset 2px 2px 5px rgba(0, 0, 0, 0.05);
}

.form-checkbox {
    width: 1rem;
    height: 1rem;
    border-radius: 4px;
    border: 1px solid #E2E8F0;
    transition: all 0.3s ease;
    position: relative;
    appearance: none;
    background-color: #F8FAFC;
    cursor: pointer;
}

.form-checkbox:checked {
    background-color: #2A5CAA;
    border-color: #2A5CAA;
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(42, 92, 170, 0.2);
}


.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1rem 0;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid #E2E8F0;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 0.75rem;
    flex: 1;
}

.comparison-header {
    font-weight: 600;
    background-color: #F1F5F9;
    color: #4A5568;
}


.iti {
    width: 100%;
}


.brightness-200 {
    filter: brightness(2);
}


@media (max-width: 768px) {
    .neomorphic-card {
        box-shadow: 6px 6px 12px rgba(174, 174, 192, 0.4), 
                    -6px -6px 12px rgba(255, 255, 255, 0.8);
    }

    .neomorphic-card:hover {
        box-shadow: 8px 8px 16px rgba(174, 174, 192, 0.5), 
                    -8px -8px 16px rgba(255, 255, 255, 0.9);
    }

    .comparison-row {
        flex-direction: column;
    }

    .comparison-cell {
        border-bottom: 1px solid #E2E8F0;
    }

    .comparison-row:last-child .comparison-cell:last-child {
        border-bottom: none;
    }
}