body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #0f172a;
    color: #e5e7eb;
}

header {
    background: linear-gradient(135deg, #facc15, #eab308);
    color: #000;
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

header p {
    font-size: 18px;
    max-width: 800px;
    margin: auto;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

h2 {
    color: #facc15;
    margin-bottom: 20px;
    font-size: 32px;
}

p {
    line-height: 1.6;
    font-size: 17px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.card {
    background: #020617;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #1e293b;
}

.card h3 {
    color: #facc15;
    margin-top: 0;
}

.image-box {
    background: #020617;
    border: 2px dashed #facc15;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.image-box img {
    max-width: 100%;
    border-radius: 10px;
}

.image-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #94a3b8;
}

footer {
    background: #020617;
    padding: 30px;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

a {
    color: #facc15;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}
