
    .hero-glow {
        box-shadow: 0 0 50px -10px rgba(34, 177, 168, 0.4);
        animation: breathe 4s ease-in-out infinite;
    }
    @keyframes breathe {
        0%, 100% { transform: scale(1); opacity: 0.95; }
        50% { transform: scale(1.015); opacity: 1; }
    }
    .custom-underline {
        text-decoration: underline;
        text-decoration-color: rgba(34, 177, 168, 0.3);
        text-underline-offset: 4px;
    }
    .custom-underline:hover {
        text-decoration-color: #22B1A8;
    }
