/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #f9f9fb;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #6c5ce7;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.login-btn {
    margin-left: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #6c5ce7;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #5649c0;
}

.btn-white {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid #6c5ce7;
    border-color: #6c5ce7;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-white:hover {
    background-color: #5649c0;
    color: white;
}

.btn-outline {
    background-color: transparent;
    border: 1px solid #6c5ce7;
    color: #6c5ce7;
}

.btn-outline:hover {
    background-color: #f0eeff;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #666;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 10px;
    background-color: #f9f9fb;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-card p {
    color: #666;
}

/* Dashboard Section */
.dashboard {
    padding: 80px 0;
}

.dashboard-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-text {
    flex: 1;
    padding-right: 40px;
}

.dashboard-image {
    flex: 1;
}

.dashboard-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.feature-icon {
    margin-right: 15px;
    color: #6c5ce7;
    font-size: 20px;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background-color: #f0eeff;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: #6c5ce7;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
}

/* Management Section */
.management {
    padding: 80px 0;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.management-card {
    text-align: center;
    padding: 30px;
}

.management-icon {
    width: 60px;
    height: 60px;
    background-color: #f0eeff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #6c5ce7;
    font-size: 24px;
}

/* Filtering Section */
.filtering {
    padding: 80px 0;
    background-color: white;
}

.filtering-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filtering-text {
    flex: 1;
    padding-right: 40px;
}

.filtering-image {
    flex: 1;
}

.filtering-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Profiles Section */
.profiles {
    padding: 80px 0;
}

/* Reporting Section */
.reporting {
    padding: 80px 0;
    background-color: white;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: #f0eeff;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 40px;
    color: #666;
}

/* Footer */
footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer-about {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: white;
    text-decoration: none;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 30px;
    text-align: center;
    color: #cbd5e0;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .features-grid,
    .stats-grid,
    .management-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero,
    .dashboard-content,
    .filtering-content {
        flex-direction: column;
    }

    .hero-content,
    .dashboard-text,
    .filtering-text {
        padding-right: 0;
        margin-bottom: 40px;
    }

    h1 {
        font-size: 32px;
    }

    .features-grid,
    .stats-grid,
    .management-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }
}
