:root {
    --primary-color: #3CCCC5;
    --secondary-color: #F8F9FA;
    --accent-color: #33CC99;
    --dark-color: #212529;
    --text-light: #FFFFFF;
    --gray-light: #E9ECEF;
    --bs-primary-rgb: 60, 204, 197;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Modern hero section with edge-to-edge design */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #33CC99 100%);
    color: var(--text-light);
    padding: 8rem 0 6rem;
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Simplified feature icons with flat design */
.feature-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    /* Removed background, border-radius, width/height constraints, and box model for a cleaner look */
}

.cta-section {
    background-color: var(--secondary-color);
    padding: 5rem 0;
    /* Increased padding for better vertical rhythm */
}

/* Updated button styles with smoother transitions */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1D36A9;
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background-color: transparent;
    border-radius: 4px;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Modern flat badge design */
.compliance-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1.25rem;
    border-radius: 3rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: background-color 0.2s ease;
}

.compliance-badge:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.compliance-badge i {
    margin-right: 0.5rem;
}

/* Modern full-width image handling */
.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    /* Removed box-shadow for cleaner design */
}

/* Simplified testimonial cards with less shadow */
.testimonial {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    /* Removed box-shadow for a flatter design */
    border: 1px solid var(--gray-light);
    transition: transform 0.3s ease;
}

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

/* Modern footer */
footer {
    background-color: var(--dark-color);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-link {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.2s ease;
    display: block;
    margin-bottom: 0.75rem;
}

.footer-link:hover {
    color: var(--text-light);
}

.text-accent {
    color: var(--accent-color);
}

/* Additional modern utility classes */
.container-fluid {
    padding-left: 0;
    padding-right: 0;
}

.section {
    padding: 5rem 0;
}

/* Edge-to-edge image containers */
.full-width-container {
    width: 100%;
    padding: 0;
    margin: 0;
}

.full-width-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Modern card design without shadows */
.card {
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

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

/* Responsive spacing adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 4rem 0 3rem;
    }
    
    .section {
        padding: 3rem 0;
    }
}