/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
}

#hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #f4f4f4;
}

.cta-button {
    padding: 10px 20px;
    font-size: 18px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}

section {
    padding: 60px 20px;
}

h2 {
    margin-bottom: 20px;
}

.slideshow img {
    width: 100%;
    height: auto;
    display: none;
    animation: fade 1s forwards;
}

.slideshow img:first-child {
    display: block;
}

@keyframes fade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.step {
    margin-bottom: 40px;
}

.next-step {
    display: block;
    margin: 20px 0;
    padding: 10px 20px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.next-step:hover {
    background-color: #0056b3;
}

.faq h3 {
    cursor: pointer;
}

.faq p {
    display: none;
}

video {
    width: 100%;
    height: auto;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

input, textarea {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
}

input:focus, textarea:focus {
    border-color: #007BFF;
    outline: none;
}

button[type="submit"] {
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007BFF;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button[type="submit"]:hover {
    background-color: #0056b3;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

.social-media a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
    transition: transform 0.3s ease;
}

.social-media a:hover {
    transform: scale(1.1);
}
