* {
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: #ffffff00;
}
::-webkit-scrollbar-thumb {
    background: #bebebe;
    border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover {
    background: #555;
}
body {
    height: 100vh;
    background-color: #fff;
    display: flex;
    padding: 2rem;
    justify-content: center;
    align-items: center;
}
main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
}
section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
form, #download, .instruction {
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    gap: 1rem;
    min-width: 650px;
    max-width: 650px;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 60px 0px;
}
.instruction {
    min-height: 80vh;
}
input, select {
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 60px 0px;
}
button {
    padding: 1rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    transition: background-color 0.2s ease-in-out;
    background-color: #1648B8;
    color: #fff;
    cursor: pointer;
}
button:hover {
    background-color: rgb(220, 57, 177);
}
button.myf {
    background-color: rgb(230, 76, 2);
}
button.myf:hover {
    background-color: #F54E00;
}
#download {
    display: flex;
    flex-direction: column;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    align-items: center;
    a, button {
        width: 100%;
    }
    img {
        max-width: 100%;
    }
}
span {
    font-size: 1.5rem;
    font-weight: bold;
}
aside {
    overflow-y: scroll;
    position: relative;
}
ul {
    padding: 0.2rem;
    transition: opacity 0.2s ease-in-out;
    list-style-position: inside;
    img {
        max-width: 100%;
        border: black 1px solid;
        margin: 0.5rem 0;
    }
}
nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
#pc blockquote{
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    img {
        max-width: 49%;
    }
}
#phone {
    position: absolute;
    top: 0;
    opacity: 0;
    blockquote {
        display: flex;
        justify-content: space-between;
        max-width: 100%;
        img {
            max-width: 32%;
        }
    }
}
.language-toggle {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1648B8;
    color: white;
    padding: 8px 16px;
    border-radius: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.language-toggle:hover {
    background: rgb(220, 57, 177);
}
.language-toggle.myf {
    background-color: rgb(230, 76, 2);
}
.language-toggle.myf:hover {
    background-color: #F54E00;
}
.ny-checkbox {
    display: flex;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    padding: 0.2rem;
    padding-left: 0.5rem;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 30px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1648B8;
  transition: .4s;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 60px 0px;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 4px;
  bottom: 4px;
  background-color: #fff;
  transition: .4s;
  border-radius: 50%;
}
input:checked + .slider:before {
  transform: translateX(30px);
  background-color: #fff;
}
input:checked + .slider {
  background-color: rgb(220, 57, 177);
}
.slider.myf {
  background-color: rgb(230, 76, 2);
}
input:checked + .slider.myf {
  background-color: #F54E00;
}
@media only screen and (max-width: 1350px) {
    form, #download, .instruction {
        min-width: 100vw;
        max-width: 100vw;
        padding: 1rem;
    }
    section {
        min-width: 100vw;
        max-width: 100vw;
    }
    img {
        max-width: 100%;
    }
    #download {
        gap: 0.5rem;
        display: none;
    }
    body {
        align-items: flex-start;
        overflow-y: scroll;
    }
    main {
        flex-direction: column;
    }
    form, #download, .instruction {
        max-height: none;
    }
    .instruction {
        overflow-y: unset;
    }
}
