body {
    font-family: 'Montserrat', sans-serif;
    background-color: #111;
    color: #eee;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #333;
}

.logo {
    color: #ff2a2a;
    font-size: 24px;
    font-weight: 800;
}

.logo span {
    color: #eee;
    font-weight: 400;
}

.nav-links a {
    color: #eee;
    text-decoration: none;
    margin-left: 30px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ff2a2a;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.cta-button {
    background-color: #ff2a2a;
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 18px;
    border-radius: 3px;
    cursor: pointer;
    margin-top: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 42, 42, 0.3);
}

h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
    margin-top: 0;
}

p {
    font-size: 18px;
    max-width: 600px;
    opacity: 0.9;
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    margin-top: 60px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-top: 100px;
    margin-bottom: 0;
}

.logo-container img {
    max-width: 100%;
    height: auto;
}
