:root {
    --primary: #0A3D62;
    --secondary: #1E88E5;
    --gold: #D4AF37;
    --white: #ffffff;
    --light: #F7FAFC;
    --dark: #23303D;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--light);
    color: var(--dark);
}

/* Navbar */
.sachly-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 90px !important;
    max-height: none !important;
    width: auto !important;
}
.nav-link {
    font-weight: 600;
    margin-left: 18px;
}
.navbar-brand {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-right: 1rem;
}
.btn-sachly {
    background: var(--primary);
    color: white;
    border-radius: 40px;
    padding: 12px 28px;
}

.btn-sachly:hover {
    background: var(--secondary);
    color: white;
}

.btn-outline-sachly {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 40px;
}

.hero-section {
    padding: 100px 0 60px; /* Reduced top padding from 180px */
}

.hero-subtitle {
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 58px;
    font-weight: 700;
    margin: 20px 0;
}

.hero-section h1 span {
    color: var(--primary);
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-image {
    max-width: 100%;
}

/* Footer */
.footer {
    background: var(--primary);
    color: white;
    padding: 30px;
}