* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.logo img {
    height: 45px;
    width: auto;
}

/* Footer */
footer {
    padding: 28px 0;
    border-top: 1px solid #f0f0f0;
    text-align: center;
}

.footer-content {
    color: #888;
    font-size: 14px;
}

/* Gradient heading style */
.gradient-heading {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        padding: 24px 0;
    }
}