.hero-gradient {
            background: linear-gradient(135deg, rgba(10, 46, 92, 0.85) 0%, rgba(42, 157, 143, 0.75) 100%);
        }
        .section-shadow {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        .flink {
            color: #2a9d8f;
            border-bottom: 1px dashed #2a9d8f;
            transition: all 0.2s ease;
        }
        .flink:hover {
            color: #0a2e5c;
            border-bottom-style: solid;
            text-decoration: none;
        }
