/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    background-color: #fff;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo img {
    max-height: 60px;
    margin-right: 30px;
}

nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.auth-buttons {
    display: flex;
    gap: 15px;
    margin-left: auto; /* This pushes the buttons to the right */
}

.btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.btn-signup {
    background-color: #6c63ff;
    color: #fff;
    border-radius: 5px;
}

.btn-login {
    background-color: #fff;
    color: #6c63ff;
    border: 1px solid #6c63ff;
    border-radius: 5px;
}

.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    background-color: #f7f7f7;
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}


.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px;
    background-color: #fff;
    text-align: center;
}

.service {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.service h2 {
    font-size: 1.2rem;
    color: #6c63ff;
    margin-bottom: 10px;
}

.service span {
    color: #ff6f61;
}

.partners {
    padding: 50px;
    text-align: center;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logos img {
    max-width: 150px;
    height: auto;
    margin: 10px;
}

.registration {
    background-color: #f7f7f7;
    padding: 50px;
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding-top: 20px;
}

.step h3 {
    font-size: 1.2rem;
    color: #333;
}

.testimonials {
    padding: 50px;
    text-align: center;
    background-color: #fff;
}

.testimonial {
    background-color: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.testimonial-video video {
    max-width: 100%;
    border-radius: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px;
}
