/* Global typography */
body, * {
    font-family: 'Saira', sans-serif;
}

/* Global form styles */
button, input, optgroup, select, textarea {
    border-radius: 0;
    border-top: none transparent;
    border-right: none transparent;
    border-left: none transparent;
    border-bottom: 1px solid #8e98a2;
    padding: 10px 0;
}



/* Heading styles */
h1, h2, h3, h4, h5, h6,
.text-3xl {
    font-family: 'Saira', sans-serif;
    font-size: 28px;
    color: #000000;
}

/* Paragraph styles */
p {
    font-size: 16px;
    color: #000000;
    margin: 0 0 14.4px;
}

/* Specific heading overrides for light backgrounds */
.bg-white h2,
.bg-gray-50 h2,
.bg-gray-100 h2 {
    color: #000000;
}

/* Specific heading overrides for dark backgrounds */
.bg-primary h2,
.bg-teal-600 h2 {
    color: #ffffff;
}

.hero-bg {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/master.webp');
            background-size: cover;
            background-position: center;
        }

         .animate-float {
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0px); }
        }