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

body {
    font-family: 'Poppins', sans-serif;
    background: #1a1a2e;
    color: #fff;
    text-align: center;
    padding: 40px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.container {
    max-width: 800px;
    margin: auto;
}

h1 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 10px;
}

p {
    font-size: 18px;
    font-weight: 300;
    color: #ddd;
    margin-bottom: 30px;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.feature-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-box:hover {
    transform: scale(1.05);
}

h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.cta {
    margin-top: 40px;
}

.btn {
    display: inline-block;
    background: #ff4757;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #e84118;
}

/* Footer Styles */
footer {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ff4757;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #e84118;
}

.footer-copyright {
    font-size: 14px;
    color: #ddd;
    margin-top: 10px;
}
