/* General Body Styling */
body {
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

/* Navbar Styling */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 3.5vh;
    padding-left: 0.6vw;
    padding-right: 0.6vw;
}

nav ul li {
    list-style: none;
    display: inline-block;
    padding: 10px 20px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #66BB6A;
    transition: .3s;
}

/* Button Styling */
.button1, .button2 {
    border: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 15px;
    transition: background 0.4s, color 0.4s;
}

.button1 {
    background: #66BB6A;
    color: white;
}

.button1:hover {
    background: #4dd0e1;
}

.button2 {
    background: transparent;
    color: #66BB6A;
    border: 2px solid #66BB6A;
}

.button2:hover {
    background: #4dd0e1;
    border: 2px solid #4dd0e1;
    color: white;
}

/* Top Section Styling */
.top {
    padding-top: 10vh;
    font-size: large;
    text-align: center;
}

.top p {
    font-weight: lighter;
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 40px;
}

.buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 37vw;
    padding-right: 37vw;
}

/* Features Section */
.features-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;  /* Allow items to wrap on smaller screens */
    margin-top: 20px;
}

.features-content img {
    max-height: 50vh;
    width: auto;
}

.flex-content {
    margin-top: 7%;
    margin-left: 5vw;
}

.get-started {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-left: 15vw;
    margin-right: 15vw;
    padding: 1vw;
    margin-top: 10vh;
    border: 2px solid #66BB6A;
}

/* Links Styling */
a {
    color: #66BB6A;
}

a:hover {
    text-decoration: underline;
}

/* Steps Section */
.steps {
    margin-top: 20vh;
}

.steps-content {
    margin-top: 7%;
    margin-left: 5vw;
    margin-bottom: 10vh;
}

/* Contact Section */
.contacts {
    display: flex;
    justify-content: space-between;
    margin-top: 10vh;
}

.contact-1, .contact-2, .contact-3 {
    flex: 1;
    text-align: center;
}

/* Social Links Section */
.socials {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 20vw;
    margin-right: 20vw;
    margin-bottom: 10vh;
}

.social-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.socials a {
    text-decoration: none;
    color: inherit;
    margin-top: 2vh;
}

/* Footer Section */
.footer {
    margin-top: 20vh;
    margin-bottom: 8vh;
}

.footer .socials {
    margin-bottom: 3vh;
}

.footer h3 {
    margin-bottom: 3vh;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    /* Navbar adjustments */
    nav {
        padding-left: 3vw;
        padding-right: 3vw;
    }

    /* Top section adjustments */
    .top {
        padding-top: 5vh;
    }

    .buttons {
        flex-direction: column;
        padding-left: 0;
        padding-right: 0;
    }

    /* Features content adjustments */
    .features-content {
        flex-direction: column;
        align-items: center;
    }

    /* Get Started Section adjustments */
    .get-started {
        flex-direction: column;
        margin-left: 5vw;
        margin-right: 5vw;
    }

    .contacts {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        margin-right: 0;
    }

    .socials {
        margin-left: 10vw;
        margin-right: 10vw;
    }

    .socials a {
        margin-top: 2vh;
    }

    /* Footer adjustments */
    .footer .socials {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3vh;
    }
}

