/* General Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #fff;
}

/* Header */
.header {
    text-align: center;
    padding: 20px;
}

.header h1 {
    font-size: 2.5rem;
}

.header p {
    font-size: 1.2rem;
    color: #94a3b8;
}

/* Navigation */
.navbar {
    background: #1e293b;
    padding: 10px;
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1rem;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #60a5fa;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
}

.hero .content {
    max-width: 50%;
}

.hero .content h2 {
    font-size: 2rem;
    color: #60a5fa;
}

.hero .content button {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.hero .content button:hover {
    background: #1e40af;
}

.hero .image img {
    max-width: 100%;
    border-radius: 10px;
}

/* Features Section */
.features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.feature-card {
    background: #1e293b;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #1e293b;
    color: #94a3b8;
}
