html {
    font-size: 12px;
}

body {
    background-color: black;
    font-family: Arial, Helvetica, sans-serif;
}

.container {
    width: 90%;
    margin: 0 auto;
    max-width: 1200px;
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 0;
    position: relative;
    z-index: 1;
}

.nav-links a {
    padding: 5px 0;
    margin: 5px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    ;
}

.logo-img {
    height: 4.2rem;
    width: 4.2rem;
}

.burger {
    display: none;
}

.hero {
    margin: 60px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 100%;
}

.head-cta__btn {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    color: white;
    background-color: black;
    border: 2px solid white;
    height: 45px;
}

.head-cta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.package-table__row td {
    color: white;
}

.packages__sub-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
}

.packages__sub-title-div::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: white;
}

.packages__sub-title-div {
    margin-bottom: 40px;
}

.table-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.package-table {
    width: 320px;
}

.package-table__row td{
    padding: 20px 0;
}

.each-table-div {
    background-color: #0F0F0F;
    padding: 40 60px;
    border-radius: 10px;
}

