.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    line-height: 1;
    text-transform: none;
    letter-spacing: normal;
    word-wrap: normal;
    white-space: nowrap;
    direction: ltr;
}

.kinetic-hover {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}
.kinetic-hover:hover {
    transform: translateY(-4px);
}

.blue-tint-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 37, 128, 0.03);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.blue-tint-overlay:hover::before {
    opacity: 1;
}

/* Carousel */
.carousel-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.carousel-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    width: 200%;
}
.carousel-slide {
    flex: 0 0 50%;
    width: 50%;
}

/* Placeholder image blocks (used where no real asset is available yet) */
.img-placeholder {
    background: linear-gradient(135deg, #d8dadc 0%, #f2f4f6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #757683;
    font-size: 12px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

/* About page */
.hero-gradient {
    background: linear-gradient(135deg, rgba(247, 249, 251, 1) 0%, rgba(220, 225, 255, 0.3) 100%);
}
.kinetic-border {
    border-top: 4px solid #00aeef;
}

/* Legal document pages */
.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #002580;
    border-left: 3px solid #2dbcfe;
    padding-left: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.25rem;
    font-weight: 700;
}
.legal-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
    color: #444652;
}
.legal-content ul {
    margin-bottom: 1.25rem;
    list-style-type: disc;
    padding-left: 1.5rem;
}
.legal-content li {
    margin-bottom: 0.5rem;
    color: #444652;
}

/* Contact form status message */
.form-status {
    display: none;
    padding: 12px 16px;
    border-radius: 0.25rem;
    font-size: 14px;
}
.form-status.visible {
    display: block;
}
.form-status.success {
    background: rgba(45, 188, 254, 0.1);
    color: #00658d;
}
.form-status.error {
    background: #ffdad6;
    color: #93000a;
}
