body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}
header {
    height: 100vh;
    background: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 0 20px;
}
header h1 {
    font-size: 3rem;
    color: gold;
    text-shadow: 0 0 15px rgba(255,215,0,0.8);
}
header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-top: 20px;
}
.cta-button {
    background: gold;
    color: #000;
    padding: 15px 30px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    margin-top: 30px;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255,215,0,0.8);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 15px rgba(255,215,0,0.8); }
    50% { box-shadow: 0 0 25px rgba(255,215,0,1); }
    100% { box-shadow: 0 0 15px rgba(255,215,0,0.8); }
}
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}
.stats div h2 {
    color: gold;
    font-size: 2rem;
}
.success-cases {
    padding: 50px 20px;
    background-color: #000;
    text-align: center;
}
.offer {
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}
.offer h2 {
    color: gold;
}
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
form input {
    padding: 15px;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
}
form button {
    background: gold;
    color: #000;
    padding: 15px;
    font-size: 1.2rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(255,215,0,0.8);
}
footer {
    background-color: #000;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #aaa;
}
