body {
    margin: 0;
    font-family: 'Hanken Grotesk', 'Hanken Grotesk Placeholder', sans-serif;
    background-color: #004d3f;
    color: white;
    font-weight: 400;
}


.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}


.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 30px;
    margin-right: 10px;
}

nav a {
    margin: 0 15px;
    text-decoration: none;
    color: white;
    font-size: 16px;
    
}

.btn {
    background-color: #00d084;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 25px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.demo-btn {
    background-color: #00d084;
    color: black;
}

/* Menu icon hidden by default */
.menu-icon {
    display: none;
    background: none;
    border: none;
    color: #333;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto; /* Pushes the menu icon to the far right */

}

/* Responsive styles */
@media screen and (max-width: 768px) {
    nav,
    .demo-btn {
        display: none;
    }

    .menu-icon {
        display: inline-block;
    }

    .container {
        justify-content: space-between;

    }

    nav.show {
        display: flex;
        flex-direction: column;
        align-items: flex-start; /* Aligns the items to the left */
    }
}

.hero {
    text-align: center;
    padding: 60px 20px;

}

.hero h1 {
    font-size: 72px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.buttons .btn {
    margin: 10px;
}

.view-savings-btn {
    border : 1px solid #00d084;
    background-color: transparent;

}

.btn:hover {
    background-color: #009970;
}

.view-savings-btn:hover {
    background-color: #009970;
}

.image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Adjust height as needed */
}

.dash {
    max-width: 100%;
    height: auto;
    border-radius: 15px; /* Adjust the value for more or less rounding */
}

#maintenance-text {
    color: #001F3F;
    text-shadow: 3px 3px 6px rgb(120, 194, 240);
    font-weight: 600;

}
