*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.header {
    background-color: rgb(17, 129, 17);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    gap: 6px;
}

.header span {
    font-size: 10px ;
    font-weight: 500;
    color: white;
}

.header h3 {
    font-size: 15px;
}

.logo {
    display: flex;
    align-items: center;
}
.logo img{
    width: 70px;
    border-radius: 6px;

}
.logo span {
    font-weight: bold;
    font-size: 20px;
    
}

.left-bar li {
    display: flex;
    justify-content:  center;


}

.left-bar ul {
    
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;

}

.left-bar {
    background-color: white;
    border-bottom: solid rgb( 17, 129, 17);

}

.nav a {
    margin: 0  10px;
    text-decoration: none;
    color: #333;
    font-size: 14px;

}

.nav-actions { 
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
}

.btn-outline { 
    border: 1px solid #0a84ff;
    background: transparent;
    color: #0a84ff;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
} 

.btn-primary {
    background: #2bb24c;
    border: none;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    cursor: pointer;

}

.hero{

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 80px;
    background: #9b8b7a;
    color: #fff;
    min-height: 80vh;
}

.hero-content {
    max-width: 500px;

}

.hero-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;

}

.signup-form {
    display: flex;
    margin-bottom: 15px;
}

.signup-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;

}

.signup-form button {
    padding: 12px 20px;
    border: none;
    background: #2bb24c;
    color: #fff;
    border-radius: 0 4px 4px 0;
    cursor: pointer;

}

.terms {
    font-size: 12px;


}

.terms a {
    color: #fff;
    text-decoration: underline;

}

.hero-image {
    position: relative;

}

.hero-image img {
    width: 480px;
    border-radius: 6px;
}

.invoice-card {
    position: relative;
    top: 40;
    right: -20px;
    background: rgba( 255,255,255,0.15);
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid rgba( 255,255,255,0.4);
}

.invoice-card .amount {
    font-size: 22px;
    font-weight: bold;

}

.invoice-card (
    
    
    
    
    

    
    
    
)

