:root {
    --primary-color: #2c5aa0;
    --secondary-color: #7dc849;
    --accent-color: #f8f9fa;
    --text-color: #333;
    --light-blue: #e3f2fd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a7bc8 100%);
    padding: 100px 0;
    color: white;
}

.btn-primary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #6ba639;
    border-color: #6ba639;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 3rem;
}

.trust-badge {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    height: 100%;
}

.newsletter-section {
    background: var(--accent-color);
    padding: 60px 0;
}

.compliance-footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
}

.compliance-footer a {
    color: #bdc3c7;
}

.compliance-footer a:hover {
    color: white;
}

.text-small {
    font-size: 0.875rem;
}