body {
    font-family: Arial, sans-serif;
    background: #f4f6f8;
    margin: 0;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
}

.header {
    background: #2c7be5;
    color: white;
    padding: 15px;
}

.card {
    background: white;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

button {
    background: #2c7be5;
    color: white;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
}

button:hover {
    background: #1a5dcc;
}

input, textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #4f46e5, #6366f1);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-search {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-search input {
    padding: 12px;
    width: 300px;
    border-radius: 6px;
    border: none;
    font-size: 16px;
}

.hero-search button {
    padding: 12px 20px;
    background: #22c55e;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

.hero-search button:hover {
    background: #16a34a;
}

.section {
    padding: 30px 20px;
}