:root {
    /* Brand Colors */
    --primary-color: #0077ff;
    --secondary-color: #00e0ff;
    --smhc-navy: #001a3d;
    --smhc-blue: #18A6F0;
    --smhc-orange: #FF7A00;
    --smhc-blue-light: #EEF5FF;
    
    /* Text & Neutral */
    --text-color: #222;
    --smhc-text-main: #333;
    --smhc-text-light: #555;
    --light-text: #fff;
    --bg-color: #fff;
    --smhc-border: rgba(0, 26, 61, 0.1);
    
    /* UI Decor */
    --glass-bg: rgba(255, 255, 255, 0.4);
    --glass-blur: blur(10px);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;

    /* Fonts */
    --font-jp: 'Noto Sans JP', 'IBM Plex Sans JP', sans-serif;
    --font-en: 'Jost', 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
}

body {
    font-family: var(--font-jp);
    color: var(--text-color);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.sub-page-hero {
    height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
    position: relative;
    padding-top: var(--header-height);
}

.sub-page-hero h1 {
    font-size: 3rem;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}