.navbar {
    background-image: url(img/navbar.png);
    background-repeat: repeat-x;
    overflow: hidden;
    padding: 10px 14px;
    margin: -10px -8px;
    margin-bottom: -5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navimg {
    height: 48px;
    margin-top: -5px;
}

.nav-links {
    display: flex;
    gap: 30px; /* Space between links */
    margin-top: -5px;
}

.nav-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 18px;
    transition: color 0.3s;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.3); /* Improves readability */
}

.nav-links a:hover {
    color: #3e79c7; /* Color change on hover */
}

.hero {
    background-image: url(img/bg.png);
    background-repeat: repeat-x;
    background-size: contain;
    margin: 0px -8px;
    padding: 120px;
    display: flex;
    gap: 200px;
}

.hero2 {
    background-image: url(img/bg2.png);
    background-repeat: repeat-x;
    background-size: contain;
    margin: -30px -8px;
    padding: 120px;
    padding-top: 0px;
    display: flex;
    gap: 200px;
}

.hero-textwrap {
    display: flex;
    flex-direction: column;
    margin: 0 auto; /* Centers the container itself */
    justify-content: center;
}

.hero-info {
    flex: 1;
    width: 33em;
    margin-top: 120px;
}

.hero2-info {
    flex: 1;
    width: 33em;
}

.hero-title {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 48px;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}

.hero2-title {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 48px;
    text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
    text-align: center;
}

.hero-text {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    text-align: justify;
}

.hero2-text {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    text-align: center;
    padding: 20px 90px;
}

.hero2-text a {
    color: #3e79c7;
    text-decoration: none;
}

.hero-text-small {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
    text-align: center;
    padding-top: 10px;
}

.hero2-featlist {
    display: flex;
    justify-content: center;
    margin-right: 90px;
}

.hero2-feattable {
    display: block;
}

.hero2-element {
    display: flex;
    align-items: center;
    margin: 10px;
}

.hero2-element img {
    width: 24px;
    height: 23px;
    padding-right: 10px;
}

.hero2-features {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    text-align: justify;
    display: flex;
    align-items: center;
}

.hero2-features a {
    text-decoration: none;
    color: #000000;
}

.heroimg {
    position: relative;
    width: 900px;
}

.hero-image {
    display: block;
    width: 900px;
}

.hero-button {
    padding-top: 20px;
    display: grid;
    place-items: center; /* centers both horizontally and vertically */
}

.hero-button a {
    text-decoration: none;
}

.hero-download {
    display: flex;
    background: #e2e4e6 url(img/bkg-button.gif) repeat-x 0 bottom;
    border: 1px solid #fff;
    border-color: #f3f4f5 #c7cacf #979b9e #e4e6e8;
    border-radius: 5px;
    box-shadow: 0 2px 2px rgba(0,0,0,0.4);
    cursor: pointer;
    color: #646f7c;
}

button:hover {
    color: #000000;
}

.button-feature {
    cursor: pointer;
    background: none;
    border: none;
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    padding: 0;
}

.hero-button-text {
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 24px;
    padding: 5px 10px;
}

#feature-image {
    transition: opacity 0.25s ease-in-out;
}

.endbar {
    background-image: url(img/endbar.png);
    background-repeat: repeat-x;
    overflow: hidden;
    padding: 0px 14px;
    margin: -45px -8px;
    margin-top: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.end-links {
    display: flex;
    gap: 10px; /* Space between links */
    margin-top: -5px;
    font-family: "Segoe UI Light", "Segoe UI", Arial, sans-serif;
    font-size: 12px;
}

.end-links a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

.end-links a:hover {
    color: #3e79c7; /* Color change on hover */
}