:root {
    --brand-dark: #0A2540;
    --brand-accent: #00C2FF;
    --brand-subtle: #F0F9FF;
    --brand-text: #425466;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-text);
}

/* Custom Phone Mockup CSS */
.mockup-phone {
    border: 12px solid #1f2937;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    background: #fff;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mockup-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 20px;
    background: #1f2937;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    z-index: 10;
}

/* Logo styles */
.navbar-logo {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-logo {
    height: 45px;
    width: auto;
    display: block;
    object-fit: contain;
}