body {
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

hr {
    border: none;
    height: 1px;
    background-color: #d3d3d3;
    width: 110%;
    margin-left: -5%;
}

.header-nav {
    height: 60px;
    margin: 10px;
    margin-left: 10vw;
    margin-right: 10vw;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.header-nav .nav-title {
    flex: 1;
    display: inline-flex;
    align-items: center;
}

.header-nav .nav-title img {
    width: 30px;
    height: 30px;
    margin-right: 5px;
}

.header-nav .nav-title a {
    text-decoration: none;
    color: #000;
}

.header-nav button {
    display: none;
}

.header-nav .nav-links {
    flex: 1;
    text-align: right;
    font-size: larger;
}

.header-nav .nav-links a {
    margin-right: 10px;
    text-decoration: none;
    color: #000;
}

.header-nav .nav-links a:hover {
    text-decoration: underline;
}

.body-content {
    margin-top: 60px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.body-content .content-title {
    text-align: center;
}

.body-content .content-title h1 {
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 1;
    letter-spacing: -2px;
    max-width: 600px;
    margin-left: 100px;
}

.body-content .content-title p {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 800px;
    color: gray;
}

.body-content .start-links {
    text-align: center;
}

.body-content .start-links a {
    display: inline-block;
    text-decoration: none;
    color: #000;
    height: 20px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    padding: 10px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 12px;
}

.body-content .start-links a:hover {
    background-color: #eee;
}

.body-content .start-links a[type="get-started"] {
    margin-right: 10px;
    color: #fff;
    border-color: #000;
    background-color: #000;
}

.body-content #banner-img {
    margin-top: 50px;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.nic-info {
    margin: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nic-info img {
    flex: 1;
    margin: 40px;
    max-width: 550px;
    max-height: 450px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.nic-info .content {
    flex: 1;
    margin: 40px;
}

.nic-info .content h2 {
    font-weight: 700;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -2px;
}

.nic-info .content p {
    font-size: 1.125rem;
    color: gray;
}

.nic-info .info-box {
    width: 100%;
    margin-bottom: 40px;
    flex: 1;
    display: flex;
    flex-direction: row;
}

.nic-features {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nic-features h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-align: center;
}

.nic-features span {
    display: block;
    font-weight: 600;
    line-height: 1.25rem;
}

.nic-features .features-cards {
    margin: 100px;
    display: grid;
    max-width: 90%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 2rem;
}

.nic-features .features-cards .card-item {
    width: calc(100% - 3rem);
    height: auto;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    padding: 1.5rem;
}

.nic-features .features-cards .card-item img {
    width: 50px;
    height: 50px;
}

.nic-features .features-cards .card-item h2 {
    margin-top: 5px;
}

.nic-features .features-cards .card-item p {
    color: gray;
}

.nic-users {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nic-users h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-align: center;
}

.nic-users span {
    display: block;
    font-weight: 600;
    line-height: 1.25rem;
}

.nic-users .users-cards {
    margin: 100px;
    display: grid;
    max-width: 90%;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    column-gap: 1rem;
    row-gap: 2rem;
}

.nic-users .users-cards .card-item {
    width: calc(100% - 3rem);
    height: auto;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    padding: 1.5rem;
}

.nic-users .users-cards .card-item .user-area {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.nic-users .users-cards .card-item .user-area img {
    margin-right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nic-users .users-cards .card-item .user-area span {
    font-weight: 400;
    color: gray;
}

.nic-faq {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nic-faq h1 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    letter-spacing: -2px;
    text-align: center;
}

.nic-faq span {
    display: block;
    font-weight: 600;
    line-height: 1.25rem;
}

.nic-faq .faq-list {
    width: 80%;
    margin: 100px;
}

.nic-faq .faq-list .list-item {
    width: 100%;
    margin-bottom: 20px;
    border: 1px solid #d3d3d3;
    border-radius: 10px;
    box-shadow: 0 20px 25px -5px rgba(113, 113, 113, 0.1);
    padding: 20px;
    overflow: hidden;
    white-space: nowrap;
}

.nic-faq .faq-list .list-item button {
    background-color: transparent;
    border: none;
    color: #000;
    font-size: 1.125rem;
    cursor: pointer;
}

.nic-faq .faq-list .list-item button:hover {
    text-decoration: underline;
}

.nic-faq .faq-list .list-item .answer {
    margin-top: 10px;
    margin-left: 5px;
    color: gray;
    white-space: normal;
}

.start-now {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 100px;
}

.start-now h1 {
    font-weight: 700;
    font-size: 3.75rem;
    line-height: 1;
    letter-spacing: -2px;
    max-width: 800px;
    margin-left: 60px;
}

.start-now p {
    font-size: 1.5rem;
    line-height: 2rem;
    max-width: 800px;
    margin-left: 60px;
    color: gray;
}

.start-now a {
    display: block;
    margin-left: 60px;
    border: 1px solid #000;
    border-radius: 5px;
    padding: 10px;
    padding-left: 50px;
    padding-right: 50px;
    text-decoration: none;
    color: #fff;
    background-color: #000;
}

.footer-nav {
    display: flex;
    flex-direction: row;
    padding: 50px;
}

.footer-nav .nav-item {
    flex: 1;
    padding-right: 10px;
    margin-right: 40px;
    word-wrap: break-word;
}

.footer-nav .nav-item h2 {
    margin-top: 0;
}

.footer-nav .nav-item a {
    display: block;
    margin-bottom: 10px;
    text-decoration: none;
    color: gray;
}

.footer-nav .nav-item a:hover {
    color: #000;
    text-decoration: underline;
}

footer {
    margin: 20px;
    margin-left: calc(50% - 120px);
    color: gray;
}
