:root {
    --primary-color: #007bff;
    --secondary-color: #ccc;
    --text-color: #fff;
    --background-color: #000;
    --white: #fff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: var(--background-color);
    color: var(--text-color);
    text-align: center;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 20px;
}

.hero-logo {
    width: 150px; /* Adjust size as needed */
    height: auto;
    margin-bottom: 30px;
}

h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background-color 0.3s ease, transform 0.1s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.footer {
    padding: 20px;
    background-color: #111;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
    }
    .cta-button {
        padding: 10px 20px;
        font-size: 1rem;
    }
}