@media (max-width: 768px) {
    .page-header {
        padding: 9rem 0 4rem;
    }
}

.page-header {
    padding: 12rem 0 6rem;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

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

user agent stylesheet section {
    display: block;
    unicode-bidi: isolate;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: var(--neutral-dark);
    background-color: var(--neutral-light);
    overflow-x: hidden;
}

:root {
    --primary-blue: orangered;
    --primary-dark: #0A1F44;
    --primary-light: #F0F5FF;
    --secondary-teal: #00D4C8;
    --secondary-purple: #7B61FF;
    --accent-green: #00B894;
    --accent-orange: #FF9F43;
    --accent-red: #FF6B6B;
    --neutral-light: #FFFFFF;
    --neutral-gray: #F8F9FA;
    --neutral-mid: #E9ECEF;
    --neutral-text: #6C757D;
    --neutral-dark: #343A40;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

:host,
:root {
    --fa-style-family-classic: "Font Awesome 6 Free";
    --fa-font-solid: normal 900 1em / 1 "Font Awesome 6 Free";
}

:host,
:root {
    --fa-font-regular: normal 400 1em / 1 "Font Awesome 6 Free";
}

:host,
:root {
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em / 1 "Font Awesome 6 Brands";
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}