/* Home Page Styling */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.header {
    background: linear-gradient(to right, #8060FF, #6D4AF8);
    color: #fff;
    padding: 80px 20px;
    text-align: center;
}

.header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.header .subtitle {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-main {
    background-color: #fff;
    color: #5a67d8;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-main:hover {
    background-color: #edf2f7;
}

.features {
    padding: 60px 20px;
    background: #fff;
}

.features h2 {
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature {
    background: #f3f4f6;
    padding: 25px;
    border-radius: 8px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.feature h3 {
    margin-bottom: 10px;
    color: #4a5568;
}

.feature p {
    font-size: 14px;
    color: #555;
}

.footer {
    text-align: center;
    padding: 30px;
    font-size: 14px;
    color: #888;
    background-color: #fafafa;
}