 body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
           
        }

        .header {
            background-color: #FAF7F2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            height: 85px;
        }

        .logo img {
            padding-top: 15px;
            height: 250PX; 
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items:center;
        }

        .nav-links a {
            color:#091346;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
            font-size: 16px;
            font-weight: 700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background-color: #44AA99;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #44AA99;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.button-group {
    display: flex;
    gap: 20px ;
    align-items: center;
}

.button-group button:first-child {
    /* Connect button - stays the same */
    padding: 12px 32px;
    background: linear-gradient(45deg, #091346, #061028);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}



.button-group button:first-child:hover {
    background: linear-gradient(45deg, #061028, #030813);
    box-shadow: 0 4px 15px rgba(9, 19, 70, 0.4);
    transform: scale(1.05);
}



.button-group button:last-child {
    padding: 12px 32px;
    background: #E8EDF5;
    color: #091346;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.button-group button:last-child:hover {
    background: #D0DBE8;
    box-shadow: 0 4px 15px rgba(9, 19, 70, 0.2);
    transform: scale(1.05);
}
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    padding: 60px 50px;
    background-color: #FAF7F2;
    position: relative;
    overflow: hidden;
}
footer {
    background-color: #FAF7F2;
    color: #091346;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}