/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

/* Header Styles */
.header-1 {
    background-color: #fff;
    border-bottom: 1px solid #eaeaea;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.header-container-1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    max-width: 1200px;
}

/* Logo */
.logo {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Navigation */
.elements {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
    margin-right: auto;
    margin-left: 50px;
}

.elements a {
    text-decoration: none;
    color: #000;
    font-size: 16px;
    font-weight: 700;
}

/* Get Started Button */
.get-started {
    background-color: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 10px 30px;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.get-started a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
}

/* First Page Section */
.First-Page {
    margin-top: 100px;
    padding: 20px;
    text-align: center;
}

.First-Page p {
    font-size: 50px;
    color: black;
    font-weight: bold;
}

/* Image Section */
.first-page-section {
    padding: 40px 20px;
    background-color: #f0f0f0;
    text-align: center;
}

.image-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
    margin-right: 20px;
}

.block {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 100px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: 100px;
    margin-right: 100px;
}

.trusted-by {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: bold;
    color: #333;
    z-index: 10;
}

.block img {
    width: 100px;
    height: auto;
    border-radius: 10px;
    z-index: 1;
    padding: 10px;
}

/* User Trusted Section */
.user-trusted {
    text-align: center;
    margin-top: 30px;
}

.user-trusted p {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.user-trusted h1 {
    font-size: 100px;
    font-weight: bold;
    color: transparent;
    background-image: linear-gradient(to right, blue, purple, orange);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Footer */
.footer-1 {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer-container-1 {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-link {
    text-decoration: none;
    color: grey;
    font-size: 16px;
    font-weight: 500;
}

.footer-link:hover {
    color: white;
}

.get-started{
    transition: 0.3s;
}
.get-started:hover{
    background-color: rgba(0, 0, 0, 0.8);
}

.get-started:hover a{
    color: white;
}
/* Responsive Design */

/* Tablets */
@media (max-width: 1024px) {
    .header-container-1 {
        padding: 0 20px;
    }

    .First-Page p {
        font-size: 40px;
    }

    .user-trusted h1 {
        font-size: 70px;
    }

    .image-container {
        flex-wrap: wrap;
    }

    .block img {
        width: 80px;
    }
    .get-started{
       justify-content: center;
    }
    .First-Page{
        margin-top: 50px;
        line-height: 1.2;
    }

    .block{
        margin-inline: 0 !important;
        gap: 40px;
        margin-top: 30px;
    }
    .trusted-by{
        top: -60px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .header-1 {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .header-container-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .logo {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .elements {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        width: 100%;
        margin-left: 0;
    }

    .get-started {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .First-Page p {
        font-size: 35px;
    }

    .block img {
        width: 70px;
    }

    .user-trusted h1 {
        font-size: 50px;
    }


    .form-tab .currency-form{
        padding: 20px;
    }
    .footer-1{
        padding-inline: 20px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .First-Page p {
        font-size: 30px;
    }

    .block img {
        width: 60px;
    }

    .user-trusted h1 {
        font-size: 30px;
    }

    .footer-container-1 {
        flex-direction: column;
        gap: 20px;
    }
    .icons--container{
        justify-content: space-between;
        gap: 0;
    }
}
