:root {
    --primary-color: #2563eb;
    --secondary-color: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --background: #ffffff;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
}

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


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}


/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-brand span {
    font-family: 'Lucida Sans';
    color: black;
}

.nav-brand .logo-scal {
    background-color: black;
    color: white;
    padding: 5px 2.5px 0px 10px;
}




/* Hero Section */
.hero {
    padding: 6rem 0 0;
    background-image: url('images/nicholas-cappello-Wb63zqJ5gnE-unsplash.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    height: calc(100vh - 80px);
    display: flex;
    align-items: flex-start;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    padding-top: 2rem;
}

.hero-content {
    padding-top: 1rem;
}










