body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: linear-gradient(to bottom right, #eef2ff, #f3e8ff);
}
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 16px;
}

.navbar {
    background: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.icon {
    height: 32px;
    width: 32px;
    color: #9333ea;
}

.title {
    font-size: 1.5rem;
    margin-left: 10px;
    color: #333;
    font-weight: bold;
}

.auth-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.btn-register {
    background: linear-gradient(to right, #9333ea, #6366f1);
    color: white !important;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 60px 0 40px;

    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #333;
}

.highlight {
    color: #9333ea;
}

.hero p {
    max-width: 600px;
    margin: 20px auto;
    color: #666;
}

.hero-buttons {
    margin-top: 30px;
}

.btn-primary,
.btn-outline {
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin: 0 10px;
}

.btn-primary {
    background: linear-gradient(to right, #9333ea, #6366f1);
    color: white;
}

.btn-outline {
    background: white;
    border: 1px solid #ddd;
    color: #333;
}

.dashboard-preview {
    background: white;
    padding: 24px;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

.dashboard-preview img {
    width: 100%;
    border-radius: 8px;
    height: 400px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
}

.feature-box {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    flex: 1 1 calc(33% - 20px);
    min-width: 280px;
}

.icon-box {
    background: #f3e8ff;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 12px;
}

.icon-sm {
    height: 24px;
    width: 24px;
    color: #9333ea;
}

.feature-box h3 {
    margin-bottom: 10px;
    color: #333;
}

.feature-box p {
    color: #555;
}

.footer {
    background: white;
    border-top: 1px solid #eee;
    padding: 20px 0;
    text-align: center;
    margin-top: 60px;
}

.social-icons a {
    margin: 0 10px;
    color: #666;
    text-decoration: none;
    font-weight: bold;
}
