/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header */
.header {
    background: linear-gradient(45deg, #007bff, #00c4cc);
    color: #fff;
    text-align: center;
    padding: 50px 20px;
}

.header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-primary {
    text-decoration: none;
    padding: 10px 20px;
    background: #ff5722;
    color: #fff;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #e64a19;
}

/* Features Section */
.features {
    background: #f9f9f9;
    padding: 50px 20px;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #007bff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card h3 {
    color: #007bff;
    margin-bottom: 10px;
}

.card p {
    color: #555;
}

.card:hover {
    transform: translateY(-5px);
}

/* Footer */
.footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 10px;
}

.footer p {
    font-size: 0.9rem;
}
