:root {
    --primary: #0066ff;
    --secondary: #6610f2;
    --success: #198754;
    --info: #0dcaf0;
    --warning: #ffc107;
    --danger: #dc3545;
    --light: #f8f9fa;
    --dark: #212529;
    --white: #ffffff;
    --gray: #6c757d;
}

/* General Styles */
body {
    font-family: 'Inter', sans-serif;
    padding-top: 76px;
}

/* Background Gradient */
.bg-gradient {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
}

/* Hover Effects */
.hover-light:hover {
    color: var(--light) !important;
    transition: color 0.3s ease;
}

/* Custom Button Styles */
.btn {
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    border-radius: 8px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #0052cc;
    border-color: #0052cc;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Navbar Styles */
.navbar {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.75);
}

/* Features Section */
.feature-card {
    border: none;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

/* Benefits Section */
.benefit-item {
    padding: 2rem;
    border-radius: 12px;
    background: var(--light);
    margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Privacy Policy */
.privacy-policy {
    padding: 8rem 0 4rem;
}

.policy-section {
    margin-bottom: 3rem;
}

.policy-section h2 {
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.policy-section p {
    color: var(--gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.policy-section ul {
    color: var(--gray);
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
}

/* 404 Error Page */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    color: var(--white);
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: var(--white);
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    body {
        padding-top: 62px;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}
