/* Variables */
:root{    
    --bg: #ffffff;        /* background */ 
    --accent-red: #C0392B;/* headers */
    --matcha: #A7C796;    /* accent */
    --text: #2C2C2C;      /* main text */
    --line: #D8D8D8;      /* borders, subtle lines */
    --card-bg: #F5F1E6;   /* cards */
    --footer-bg: #2C2C2C; /* footer background */
}

html,body {
    min-height:100%;
    max-width: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

*[id] {
    scroll-margin-top: 109px;
}

body{
    font-family: "Noto Sans JP", "Noto Serif JP", system-ui, "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
    background: var(--bg);
    color: var(--text);
}

.page {
    min-height: 100%;
    display: flex;
    justify-content: center;
}

.container {
    width:100%;
    max-width: 1200px;
    padding: 0 24px; 
}


/* Hide checkbox */
#menu-toggle {
    display: none;
}

/* Top Navigation and Header*/
.site-header {
    margin: 0 0 20px 0; 
    background-color: transparent;
}

.topbar {
    background-color: var(--card-bg);
    width: 100vw;
    position: fixed;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    z-index: 9999;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 24px;
    flex-wrap: wrap;
    max-width: 1200px;
}

.logo {
    margin-top: 8px;
}

.logo img {
    width: 150px;
    height: auto;
}

.topnav {
    display: flex;
    gap: 15px;  
    align-items: center;
    font-size: 18px;
}

.topnav a {
    color: var(--matcha);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
    outline: none;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.topnav a:hover{
    color: var(--accent-red);
    background: rgba(192, 57, 43, 0.15);
}

.topnav a:focus {
    color: var(--accent-red);
    text-decoration: none;
}

.topnav a.active {
    color: var(--accent-red);
    text-decoration: underline;
}

/* Hide hamburger by defailt in desktop */
.hamburger {
    display: none;
}

/* Hero */
.hero img{
    width:100%;
    height:auto;
    object-fit:cover;
    max-width: 1200px;
    margin-top: 90px;
}

/* Announcement*/
.section-announcement {
    margin: 0 auto 40px auto;
    max-width: 1200px;
}

.announcement-container {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
    padding-top: 25px;
}

.section-title-pill {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border-radius: 5px;
    background: #FFFFF0;
    color: var(--accent-red);
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 5px 30px;
    border: 2px solid var(--line);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.ann-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin: 0 20px;
    padding-top: 10px;
}   

.ann-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ann-item {
    display: flex;
    padding: 15px 0;
    font-size: 20px;
    color: var(--text);
    border-bottom: 1px solid var(--line);
    gap: 80px;
    align-items: flex-start;
    background: transparent;
    transition: none;
    margin: 0 20px;
    text-align: justify;
}

.ann-item:hover {
    background: transparent;
}

.ann-item:last-child {
    border-bottom: 1px solid var(--line);
}

.ann-date {
    color: #2C2C2C;
    font-size: 20px;
    font-weight: 400;
    white-space: nowrap;
    min-width: 147px;
}

.ann-text {
    flex: 1;
    line-height: 1.6;
    font-size: 20px;
}

.ann-text a {
    text-decoration: none;
    color: var(--text);
}

.ann-text a:hover {
    text-decoration: underline;
    text-decoration-color: black;
}

.ann-past {
    text-align: right;
    margin-right: 18px;
    padding: 15px 0;
    background: transparent;
    border-top: none;
}

.ann-past a {
    color: var(--text);
    text-decoration: underline;
    font-size: 18px;
    font-weight: 400;
    transition: color 0.2s ease;
}

.ann-past a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

/* GREETING */

.section-greeting {
    position: relative;
    margin: 60px auto 40px auto;
    max-width: 1200px;
}

.greeting-title-pill {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border-radius: 5px;
    background: #FFFFF0;
    color: var(--accent-red);
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 35px;
    border: 2px solid var(--line);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
    z-index: 1;
} 
.greeting {
    background: var(--card-bg);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 25px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.greeting .row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: nowrap;
}

.greeting .greet-name {
    font-size: 20px;
    font-weight: 700;
    margin-top: 12px;
    margin-bottom: 0;
}

.greeting .info {
    font-size: 18px;
    color: var(--text);
    margin: 0;
}

.greeting ul {
    font-size: 18px;
    margin-top: 10px 0 0 0;
    padding-left: 20px;
    list-style-position: inside;
}

.greeting .column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.greeting .column-left {
    flex: 30%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
    margin-left: 10%;
}

.greeting .column-right {
    width: 70%;
    margin-top: 20px;
    padding-right: 70px;
} 

.img-placeholder {
    max-width: 300px;
    width: 100%;
}

.img-placeholder img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* INSTRUCTOR */
.section-heading.ins{
    font-weight: 700;
    color: var(--accent-red);
    margin-bottom: 20px;
}

.instructor-wrap {
    display: flex;
    margin-top: 18px;
    gap: 20px;
    align-content: center;
    flex-wrap: wrap;
    justify-content: center; 
    align-items: stretch;
}

.card-instructor {
    border: 1px solid var(--line);
    border-radius: 8px;
    width: 480px;
    padding: 20px;
    text-align: center; 
}

.avatar {
    width: 100%;
    height: 216px;
    margin: 0 auto;
    overflow: hidden;
}

.avatar  img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    object-position: center;
    background-color: #ccc;
    border-radius: 2%;
    margin: 0 auto 12px;
}

.card-instructor .name {
    margin: 6px 0 4px;
    font-size: 20px;
    font-weight: 700;
}

.card-instructor p{
    font-size: 18px;
    line-height: 1.5;
    text-align: justify;
}

/* ALUMNI */

.alumni {
    margin: 0 auto 40px auto;
    max-width: 1200px;
    text-align: center;
}

.alumni-heading {
    font-weight: 700;
    color: var(--accent-red);
    background-color: var(--card-bg);
    padding: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.alumni-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  background: white;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  gap: 20px; 
  text-align: justify;
}

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

.photo-placeholder {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo-placeholder img{
    width: 100%;
    max-width: 280%;
    height: auto;
    aspect-ratio: 375/446;
    border-radius: 10px;
    object-fit: cover;
}

.column-alumni:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.column-alumni:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.column-alumni:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
    justify-self: start;
    text-align: left;
}

.column-alumni .description {
    margin-top: 24px;
    font-size: 20px;
    color: var(--text);
}

.credit {
    grid-column: 1;
    grid-row: 2;
    justify-self: start;
}

.credit .text-below {
    font-size: 14px;
    margin: 0;
}

/* USER GUIDE */
.user-guide {
    position: relative;
    max-width: 1200px;
}

.user-guide-heading {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border-radius: 5px;
    background: #FFFFF0;
    color: var(--accent-red);
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 35px;
    border: 2px solid var(--line);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.user-guide-box {
    margin: 60px 0 40px 0;
    background: var(--card-bg);
    border-radius: 5px;
    border: 1px solid var(--line);
    padding-top: 10px;
}

.user-guide .bussiness-hours {
    padding: 15px 0 15px 25px;
    font-size: 24px;
    font-weight: 700;
}

.user-guide table {
    width: 95%; 
    border-collapse: collapse;
    margin: 0 auto 12px auto;
}

.user-guide td {
    padding: 10px;
    border: 1px solid var(--line);
    font-size: 20px;
}

.user-guide .left-col {
    width: 40%; 
    background-color: #ccc;
}

.fees {
    padding: 0 0 10px 25px;
    margin-top: 6px;
}
.fees-title{
    font-weight: 700;
    font-size: 24px;
    color: var(--text);
}

.fees-title p{
    font-size: 20px;
}

/* ACCESS */
.section-access {
    margin: 50px auto 40px auto;
    max-width: 1200px;
    position: relative;
}
.access-title-pill {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    border-radius: 5px;
    background: #FFFFF0;
    color: var(--accent-red);
    font-weight: 700;
    text-align: center;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 35px;
    border: 2px solid var(--line);
    box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

.access-photo-placeholder {
    max-width: 500px;
    width: 100%; 
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eee;
}

.access-card {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding-top: 70px;
}

.google-map {
    width: 100%;
    height: 400px;
    border: 0;
}

.column-access {
    width: calc((100% - 50px) / 2);
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.column-access:not(:first-child) {
    align-items: flex-start; 
    list-style: inside;
}

.acc-list {
    list-style-type: disc;
    padding: 0 0 0 15;
    margin: 0;
    text-align: left;
    list-style-position: outside;
}

.acc-list li {
    margin-bottom: 10px;
}

/* FOOTER */
.site-footer {
    background: var(--bg);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.footer-uprow {
    max-width: 1200px;
    padding: 20px 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: white;
}

.logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 80px;
}

.logo-section img {
    width: 200px;
    height: 70px;
    border: 1px solid #ccc;
    padding: 7px;
    margin: -3px;
    border-radius: 4px;
}

.footer-center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px; 
    padding: 5px;
    background: #f9f9f9;
    color: var(--text);
    text-align: center;
    gap: 15px;
    margin: 0 auto;
}

.footer-text-box {
    font-size: 14px;
}

.footer-text-box a {
    color: #0066cc;
    text-decoration: underline;
}

.footer-text-box a:hover {
    color: var(--accent-red);
    text-decoration: underline;
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code img {
    width: 70px;
    height: 70px;
    background: #f0f0f0;
    border: 2px solid var(--line);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #666;
    text-align: center;
}

.footer-secrow {
    background: var(--footer-bg);
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 20px 0;
}

.footer-downrow {
    max-width: 1200px;
    padding: 0 24px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.footer-logotext {
    font-family: "Noto Serif JP";
    color: white;
    font-weight: 700;
    width: 100%;
    flex: 1;
}

.footer-center-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 8;
}

.footer-nav.footnav {
    display: flex;
    gap: 20px;  
    align-items: center;
    font-size: 18px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

.footer-nav.footnav a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    padding: 0;
    transition: color 0.2s;
}

.footer-nav.footnav a:hover{
    color: var(--accent-red);
}

.footer-nav.footnav a:focus {
    color: var(--accent-red);
    text-decoration: none;
}

.footer-nav.footnav a.active {
    color: var(--accent-red);
    text-decoration: underline;
}

.site-footer .copyright {
    color: white;
    font-size: 12px;
    text-align: center;
    font-weight: 400;
}

/* MOBILE RESPONSIVE (768px BREAKPOINT) */
@media (max-width: 768px) {
    .container  {
        padding: 0 16px;
    }

    .page {
        max-width: none;
        margin: 0 auto;
    }

    *[id] {
    scroll-margin-top: 100px; 
    }

    /* HEADER AND NAVIGATION */
   
    .topbar {
        padding: 10px 0;
        position: fixed;
    }

    .topbar-content {
        padding: 0 16px;
        flex-wrap: wrap;
        position: relative;
    }

    .topbar-content .logo img {
        width: 120px;
    }

    .hamburger {
        display: inline-flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 22px;
        cursor: pointer;
        order: 2;
    }

    .hamburger .bar {
        height: 3px;
        background: var(--matcha);
        border-radius: 2px;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    .topnav {
        display: none;
        flex-direction: column;
        background: var(--card-bg);
        width: 100%;
        order: 3;
        gap: 0;
        border-top: 1px solid var(--line);
        margin-top: 10px;
    }

    .topnav a {
        display: block;
        padding: 15px 0 5px;
        border-radius: 6px;
        margin: 0;
        font-size: 18px;
        text-align: left;
        border-bottom: 1px solid var(--line);
    }

    .topnav a:last-child {
        border-bottom: none;
    }

    .topbar-content {
        min-height: 60px;
    }

    .topnav a:hover{
        color: var(--accent-red);
        background: rgba(192, 57, 43, 0.15);
    }

    .topnav a:focus {
        color: var(--accent-red);
        text-decoration: none;
    }

    .topnav a.active {
        color: var(--accent-red);
        text-decoration: underline;
    }

    /* SHOW MENU WHEN CHECKBOX IS CHECKED */
    #menu-toggle:checked ~ .page .topnav {
        display: flex !important;
    }
    
    /* ANIMATE HAMBURGER TO X */
    #menu-toggle:checked ~ .page .hamburger .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    #menu-toggle:checked  ~ .page .hamburger .bar:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .page .hamburger .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }


    /* SECTION ADJUSTMENT */
    .section-greeting,
    .section-instructor,
    .alumni,
    .user-guide,
    .section-access {
        margin-bottom: 30px;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
    }

    .section-title-pill,
    .greeting-title-pill,
    .section-heading.ins,
    .alumni-heading,
    .user-guide-heading,
    .access-title-pill {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .section-title-pill,
    .greeting-title-pill,
    .section-heading.ins,
    .user-guide-heading,
    .access-title-pill {
        padding: 8px 20px;
        font-size: 20px;
        white-space: nowrap;
        max-width: calc(100vw - 40px);
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .hero img {
        margin-top: 80px;
    }

    .section-access {
        margin: 40px auto 40px auto;
    }

    .access-card {
        margin: 40px 0 0 0;
    }

    /* ANNOUNCEMENT */
    .ann-item {
        flex-direction: column;
        gap: 8px;
        padding: 15px 12px;
    }

    .ann-date {
        font-size: 18px;
    }

    .ann-text {
        font-size: 16px;
    }

    /* GREETING SECTION */
    .greeting .row {
        flex-direction: column;
        gap: 5px;
        align-items: center;
    }

    .greeting .column-right,
    .greeting .column-left {
        width: 100%;
        margin-top: 0;
        padding-right: 0;
    }

    .greeting .column-left {
        width: 100%;
        margin-top: 10px;
        margin-left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .greeting .info {
        font-size: 16px;
    }

    .greeting .greet-name {
        text-align: center;
    }

    .img-placeholder img {
        width: 100%;
        height: auto;
        max-width: 280px;
        object-fit: cover;
    }

    /* INSTRUCTOR */
    .instructor-wrap {
        flex-direction: column;
        gap: 15px;
    }

    .card-instructor {
        width: 80%;
        max-width: 100%;
    }

    .avatar img {
        width: 200px;
        height: 216px;
    }

    .card-instructor .name {
        font-size: 18px;
    }

    .card-instructor p {
        font-size: 16px;
    }

    /* ALUMNI */
    .alumni-card {
        display: flex;
        flex-wrap: wrap;
        padding: 15px;
        position: relative;
        gap: 10px;
    }

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

    .column-alumni:nth-child(1),
    .column-alumni:nth-child(2) {
        width: calc(50% - 5px);
        grid-column: unset;
        grid-row: unset;
        justify-self: unset;
    }

    .photo-placeholder {
        width: 100%;
        margin-bottom: 0;
    }

    .photo-placeholder img {
        width: 100%;
        max-width: none;
        height: auto;
        min-height: 150px;
        aspect-ratio: 375/446;
        border-radius: 15px;
        object-fit: cover;
    }

    .column-alumni:nth-child(3) {
        width: 100%;
        text-align: left;
        margin-top: 15px;
        margin-bottom: 40px;
        grid-column: unset;
        justify-self: unset;
        align-self: unset;
    }

    .column-alumni .description {
        font-size: 16px;
        margin-top: 0;
        line-height: 1.5;
    }

    .credit {
        position: absolute;
        right: 15px;
        bottom: 15px;
        width: auto;
        grid-column: unset;
        grid-row: unset;
        justify-self: unset;
    }

    .credit .text-below {
        font-size: 14px;
        margin-top: 0;
        text-align: right;
    }

    /* USER GUIDE */
    .user-guide table td,
    .fees p {
        font-size: 16px;
    }

    .user-guide td {
        padding: 8px 6px;
    }

    .user-guide .bussiness-hours {
        font-size: 20px;
        padding: 12px 0 12px 15px;
    }

    .fees {
        padding: 0 0 10px 15px;
    }

    .fees-title {
        font-size: 20px;
    }

    /* ACCESS */
    .access-card {
        flex-direction: column;
        gap: 20px;
        padding: 50px 15px 15px 15px;
        align-items: center;
    }

    .column-access {
        width: 100%;
        padding: 10px 25px;
        text-align: center;
        align-items: center;
    }

    .acc-list {
        text-align: center;
        list-style-position: outside;
        padding-left: 0;
    }

    .google-map {
        height: 300px;
    }

    .acc-list li {
        font-size: 16px;
        margin-bottom: 8px;
        text-align: justify;
    }
    /* FOOTER MOBILE */
    .footer-uprow {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 15px 16px;
    }

    .footer-center {
        order: 2;
        gap: 10px;
    }

    .logo-section img {
        width: 150px;
        padding: 0 5px;
        margin: 12px;
    }

    .footer-logo {
        order: 1;
        justify-content: center;
    }

    .footer-logotext img {
        width: 120px;
    }

    .qr-code {
        width: 100px;
        height: 100px;
    }

    .footer-downrow {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 0 5px;
    }

    .footer-center-nav {
        align-items: center;
    }

    .footer-nav.footnav {
        font-size: 16px;
        gap: 2px;
        margin-bottom: 15px;
    }

    .footer-nav.footnav a {
        padding: 2px 8px;
    }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .topnav a{
        font-size: 16px;
    }
    .footer-nav.footnav {
        gap: 4px;
    }

    .footer-nav.footnav a {
        font-size: 16px;
    }
}

/* EXTRA SMALL SCREENS */  
@media (max-width: 375px) {
    .container {
        max-width: 343px;
    }

    .page {
        max-width: none;
    }

    *[id] {
    scroll-margin-top: 90px; 
    }

    .topbar-content .logo img {
        width: 100px;
    }

    .hero img {
        margin-top: 67px;
    }

    .card-instructor .name {
        font-size: 16px;
    }

    .card-instructor p {
        font-size: 14px;
    }

    .section-heading.ins,
    .alumni-heading {
        font-size: 20px;
    }

    .section-title-pill,
    .greeting-title-pill,
    .user-guide-heading,
    .access-title-pill {
        font-size: 18px;
        padding: 6px 16px;
    }

    .alumni-card {
        padding: 10px;
        position: relative;
    }

    .column-alumni:nth-child(1),
    .column-alumni:nth-child(2) {
        width: calc(50% - 5px);
    }

    .photo-placeholder img {
        width: 100%;
        max-width: none;
        height: auto; 
        min-height: 120px; 
        aspect-ratio: 375/446; 
        border-radius: 15px;
        object-fit: cover;
    }

    .column-alumni .description {
        font-size: 14px;
        margin-top: 10;
    }

    .credit .text-below {
        font-size: 12px;
        margin-top: 0;
        text-align: right;
    }
    .avatar {
        width: 100%;
        height: 190px;
        margin: 0 auto;
        overflow: hidden;
    }
    .avatar img {
        width: 150px;
        height: 180px;
    }

    .section-access {
        margin: 30px auto 30px auto;
    }

    .access-card {
        margin: 30px 0 30px 0;
    } 

    /* Footer */
    .footer-nav.footnav {
        gap: 0;
        display: flex;
        flex-direction: column;
    }

    .footer-nav.footnav a {
        font-size: 16px;
    }


    .footer-secrow {
        padding: 10px;
    }

    .footer-logotext img {
        width: 110px;
    }

    .qr-code {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
}