/* Brand Colors Variables */
:root {
    --primary-blue: #1461C4;
    --accent-orange: #F57231;
    --success-green: #2F7419;
    --white: #FFFFFF;
    --light-bg: #F8F9FA;
    --border: #E5E7EB;
    --text-main: #333333;
    --text-secondary: #666666;
    --danger: #DC3545;
}

/* General Styles */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--light-bg);
}

/* Header & Navigation */
header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    display: block;
    height: 50px; /* You can adjust this number to make the logo bigger or smaller */
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 25px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.nav-links a:hover {
    opacity: 0.8;
}

/* Buttons */
.login-btn {
    background-color: var(--accent-orange);
    color: var(--white);
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.1s, background 0.2s;
}

.login-btn:hover {
    background-color: #e4652a; /* Slightly darker orange */
    transform: translateY(-1px);
}

.cta-btn {
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
}

.cta-btn:hover {
    background-color: #104ea0; /* Slightly darker blue */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1461C4 0%, #0a3a7a 100%);
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Features Section */
.features {
    padding: 80px 10%;
    text-align: center;
}

.features h2 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.feature-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: var(--white);
    padding: 80px 10%;
    text-align: center;
    border-top: 1px solid var(--border);
}

.contact h2 {
    color: var(--primary-blue);
}

/* Footer */
footer {
    background: var(--primary-blue);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    font-size: 0.9rem;
    border-top: 4px solid var(--accent-orange);
}
