@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Inter", sans-serif;
}
a {
    text-decoration: none;
    color: #fff;
}

header {
    width: 100%;
    height: 100px;
    background-color: #063B2D;
    color: #fff;
}
header .container {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 150px;
    width: 90%;
    margin: 0px auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 35px;
}
.logo__image img {
    width: 64px;
    height: 64px;
}
main {
    display: flex;
}
aside {
    height: 900px;
    width: 250px;
    background-color: #063B2D;
}
.buttons {
    padding: 15px;
    display: flex;
    gap: 15px;
}
.btn {
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    background-color: #094535;
}
.category h3 {
    color: #70d7e1;
    margin-bottom: 15px;
}
aside {
    padding: 15px;
}
aside nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.content {
    padding: 30px;
    width: 84%;
}
.content-area {
    width: 100%;
}
.current-category {
    width: 100%;
    padding: 10px;
    background-color: #0ba7b7;
}
.current-name {
    width: 100%;
    padding: 10px;
    background-color: #aef7ff;
}
.searchform input {
    padding: 18px;
    border-radius: 16px;
    outline: none;
    border: none;
    width: 390px;
}

.searchform input {
    width: 526px;
    height: 40px;
    border-radius: 16px;
    background-color: #0E5743;
    color: #fff;
    text-indent: 30px;
}
.searchform .search-icon {
    cursor: pointer;
    display: inline-block;
    position: relative;
    left: 36px;
}
.category h2 {
    color: #ACBFBA;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}
.category ul {
    list-style: none;
}
.category a {
    text-decoration: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
}
.faq-title {
    font-size: 21px;
    color: #063B2D;
    font-weight: 700;
    margin-bottom: 30px;
}
.points {
    cursor: pointer;
    border-radius: 16px;
    border: 2px solid #094535;
    padding: 10px;
    width: 533px;
    margin-bottom: 30px;
}
.points h2 {
    font-size: 20px;
    font-weight: 500;
    color: #0E5743;
}
.points-container {
    margin-bottom: 30px;
}
.category a {
    display: block;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}
.category-0 a {
    color: #ACBFBA;
    font-size: 15px;
    font-weight: 500;
    margin-top: 20px;
    margin-bottom: 20px;
}
.form-button {
    margin-left: 14px;
    padding: 14px;
    border-radius: 8px;
    background: #005740;
    transition: 1s;
}
.form-button:hover {
    background: #006D50;
}