@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Noto+Sans+Thai:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');

:root {
    --background-color: #ffffff;
    --font-color: #0e0d0d;
    --hover-color: #ff5c05;
    --navborder-color: #ea0303;
    --seconadry-color: #3ec8ff;
    --font2-color: #006ac0;
    --font3-color: #002d5b;
}

/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans Thai", serif;
    font-optical-sizing: auto;
    font-style: normal;
    background-color: #fdfbfd;
    font-weight: normal;
}

.top-bar {
    width: 100%;
    padding: 10px 20px;
    border-bottom: 1px solid #dddddd;
    border-bottom: none;
    background: linear-gradient(to bottom, #dff6ff, #ffffff);
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;

}

#nav-links,
header {
    padding: 20px;
    background-color: #fffefe;
}


/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-icons a img {
    width: 16px;
    height: auto;
    transition: transform 0.5s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}


/* Logo */
.logo img {
    height: 100px;
    left: 50%;
}

/* Actions (Search and Hamburger Menu) */
.actions {
    display: flex;
    gap: 15px;
}

.actions i {
    font-size: 20px;
    color: #333;
    cursor: pointer;
    transition: color 0.3s;
}

.actions i:hover {
    color: #0078d7;
}



/* Language Switcher Styling */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 20px;
}

.language-switcher a {
    text-decoration: none;
}

.language-switcher img {
    width: 20px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.language-switcher img:hover {
    transform: scale(1.1);
}

/* ปรับการจัดตำแหน่งของ Search Bar */
.search-bar {
    display: none;
    gap: 5px;
}


/* กล่องค้นหา */
.search-bar input {
    flex: 1;
    padding: 5px 10px;
    font-size: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* ปุ่มค้นหา */
.search-bar button {
    padding: 5px 15px;
    font-size: 14px;
    background-color: #4cc6ff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-bar button:hover {
    background-color: #0084ff;
}

.search-bar.active {
    display: flex;
    align-items: center;
}

/* Hamburger Menu */
#hamburger-icon {
    display: block;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-links ul li a {
    color: #333 !important;
}

.nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 5px 15px;
    background-color: var(--background-color);
    position: relative;
    z-index: 1000;
}

.nav-links ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.nav-links ul li {
    position: relative;
}

.nav-links ul li a {
    text-decoration: none;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links ul li a:hover {
    color: #007BFF;
}

/* Fix Mobile Navigation */
@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        width: 250px;
        height: 100%;
        background-color: var(--background-color);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 0;
        z-index: 2000;
        overflow-y: auto;
        transition: right 0.3s ease-in-out;
    }

    .nav-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
        margin: 0;
        gap: 5px;
        /* Reduce space */
    }

    .nav-links ul li {
        width: 100%;
        text-align: center;
        padding: 5px 0;
        /* Reduce padding */
    }

    .nav-links ul li a {
        font-size: 16px;
        width: 100%;
        display: block;
        padding: 10px 0;
    }
}




/* Dropdown Menu Styling */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 130px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}


.dropdown-menu li {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
    color: #007BFF;
}



/* Responsive Design */
@media (max-width: 768px) {
    .nav-links ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links ul li a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .nav-links ul li a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .logo img {
        height: 80px;
    }
}
/* Responsive for tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .navbar {
        padding: 10px 15px;
    }

    .logo img {
        height: 80px;
    }

    .actions i {
        font-size: 18px;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background-color: white;
        padding: 10px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links ul {
        flex-direction: column;
        width: 100%;
    }

    .nav-links ul li {
        text-align: center;
        width: 100%;
        padding: 8px 0;
    }

    .nav-links ul li a {
        font-size: 16px;
        padding: 10px 15px;
    }
    #hamburger-icon {
        display: block;
        font-size: 22px;
        cursor: pointer;
    }
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 2000;
    padding: 20px;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.fullscreen-menu.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}

.fullscreen-menu.active+.services {
    margin-top: 100px;
}

/* Close Icon */
#close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

/* Adjust Dropdown Menu Styling */
.dropdown-menu1 {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 130px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    transform: translateY(-10px);
}

/* Ensure Dropdown Menu Stays Open When Hovered */
.dropdown1:hover .dropdown-menu1 {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Adjust Dropdown Parent Styling */
.dropdown1 {
    position: relative;
    cursor: pointer;
}

.dropdown-menu1 li {
    display: block;
}

.dropdown-menu1 a {
    display: block;
    padding: 10px 15px;
    color: #000;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu1 a:hover {
    background-color: #f0f0f0;
    color: #007BFF;
}


/* Responsive Design */
@media (max-width: 768px) {
    .ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .ul li a {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .ul li a {
        font-size: 14px;
        padding: 8px 10px;
    }

    .logo img {
        height: 80px;
    }
}

/* Menu Logo */
.menu-logo {
    margin-bottom: 20px;
    text-align: center;
}

.menu-logo img {
    height: 80px;
}

/* Menu Content */
.menu-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1200px;
}

.menu-section {
    flex: 1 1 30%;
    /* Adjust for responsiveness */
    margin: 10px;
}

.menu-section h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--font3-color);
    font-weight: bold;
}

.menu-section ul {
    list-style: none;
    padding: 0;
}

.menu-section ul li {
    margin: 5px 0;
}

.menu-section ul li a {
    text-decoration: none;
    color: var(--font3-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.menu-section ul li a:hover {
    color: var(--font3-color);
}

.menu-social-icons {
    position: absolute;
    bottom: 20px;
    display: flex;
    gap: 15px;
}

.menu-social-icons a {
    font-size: 1.2rem;
    color: black;
    transition: color 0.3s ease;
}

#hamburger-icon {
    font-size: 1.5rem;
    color: black;
    cursor: pointer;
}

.menu-link {
    text-decoration: none;
    color: var(--font3-color);
    transition: color 0.3s ease;
}

.menu-link:hover {
    color: var(--hover-color);
}

/* Hide search and language switcher by default on mobile */
@media (max-width: 768px) {

    .language-switcher,
    .search-bar {
        display: none;
    }

    /* Show inside the fullscreen menu */
    .fullscreen-menu .language-switcher,
    .fullscreen-menu .search-bar {
        display: flex;
        justify-content: center;
        margin-top: 20px;
    }
}

html,
body {
    width: 100%;
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    margin: 0;
    padding: 0;
}

/*line*/
.contact-container1 {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.contact-item1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color 0.3s ease;
}

.contact-item1:nth-child(2) {
    background-color: white;
    border: 1px solid #28a745;
    color: #28a745;
}

.contact-item1 .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-size: 1.2rem;
}

.contact-item1:hover {
    background-color: #1e7e34;
    color: white;
}

.contact-item1:nth-child(2):hover {
    background-color: #28a745;
    color: white;
}

@media screen and (max-width: 768px) {
    .contact-container1 {
        flex-direction: row;
        gap: 15px;
        bottom: 10px;
    }

    .contact-item1 {
        width: 90%;
        padding: 12px;
        font-size: 1rem;
        text-align: center;
        white-space: nowrap;
    }

    .contact-item11 .icon {
        margin-right: 8px;
        /* Maintain spacing between icon and text */
    }
}

a.btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

@media (min-width: 1000px) {
  a.btn {
    margin-right: 100px;
  }
}

/* Cal Strat*/
.cal-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.cal {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 0;
}

.cal-item {
    /* width: 40%; */
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 430px;
    height: 400px;
    border-radius: 15px;
}

.cal-item h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--font2-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.cal-item h2 i {
    margin-right: 10px;
    color: var(--font2-color);
    /* margin-bottom: 30px; */
}

.cal-item p {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 10px 0;
}

.cal-item p i {
    margin-right: 10px;
    color: var(--font2-color);
    /* margin-bottom: 30px; */
}

.cal-iframe {
    width: 40%;
    height: 600px;
    border: none;
    border-radius: 8px;
    display: block;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Responsive for tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .cal {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .cal-item {
        width: 100%;
        text-align: center;
    }

    .cal-iframe {
        width: 100%;
        height: 600px;
    }
}

/* Responsive for mobile devices (max-width: 576px) */
@media (max-width: 576px) {
    .cal {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        gap: 10px;
    }

    .cal-item {
        width: 100%;
        text-align: center;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .cal-iframe {
        width: 100%;
        height: 500px;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
}

/* Cal End */

.hero {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(to right, #003f87, #007bff);
    color: white;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 900px;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffcc00;
    color: #003f87;
    text-decoration: none;
    font-size: 18px;
    border-radius: 15px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    color: #003f87;
    transform: scale(1.05);
    background-color: #ffcc00;
}

.content {
    padding: 60px 20px;
    text-align: center;
}

.content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #003f87;
}

.grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.card {
    width: 300px;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.05);
    background-color: #f1f8ff;
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
}

.card h3 {
    font-size: 20px;
    color: #007bff;
}

.card p {
    font-size: 16px;
    color: #333;
}

.cta {
    text-align: center;
    padding: 40px;
    background-color: #003f87;
    color: white;
    margin-top: 40px;
}

.cta h2 {
  margin: 0 auto 20px auto;
  font-size: 24px;
  display: block;
  width: fit-content;
  text-align: center; 
}

/* cal-details-end */


/* check-list start */
.check-container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.checklist-section {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 30px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.checklist-item {
    width: 40%;
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.checklist-item h2 {
    display: flex;
    align-items: center;
    font-size: 24px;
    color: var(--font2-color);
    margin-bottom: 40px;
    font-weight: bold;
}

.checklist-item h2 i {
    margin-right: 10px;
    color: var(--font2-color)
}

.checklist-item p i {
    margin-right: 10px;
    color: var(--font2-color);
}

.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin: 10px 0;
}

.checklist li i {
    margin-right: 10px;
    color: var(--font2-color);
}

.logo-container {
    text-align: center;
    margin-bottom: 20px;
}

.logo-container img {
    width: 400px;
    height: 300px;
    border-radius: 15px;
}

.check-iframe {
    width: 55%;
    height: 800px;
    border: none;
    border-radius: 8px;
}

/* Responsive for tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .checklist-section {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .checklist-item {
        width: 90%;
        text-align: center;
    }

    .check-iframe {
        width: 100%;
        height: 600px;
    }
}


@media (max-width: 576px) {
    .checklist-section {
        flex-direction: column;
        align-items: center;
        padding: 15px;
    }

    .checklist-item {
        width: 100%;
        text-align: center;
    }

    .checklist-item h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .checklist li {
        font-size: 14px;
    }

    .check-iframe {
        width: 100%;
        height: 500px;
    }

    .logo-container img {
        width: 100%;
        height: auto;
    }
}


/* check-list end */


/* Footer Base */
.footer {
    background: rgb(236, 236, 236);
    color: white;
    padding: 50px 20px;
    font-size: 16px;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

/* .footer-left {
    flex: 1;
    max-width: 300px;
    text-align: left;
}

.footer-left h2 {
    font-size: 20px;
    color: var(--font2-color);
    display: inline-block;
    padding-bottom: 5px;
    font-weight: bold;
}

.footer-logo {
    width: 180px;
} */
.footer-left h2 {
    font-size: 20px;
    color: var(--font2-color);
    display: inline-block;
    padding-bottom: 5px;
    font-weight: bold;
}

.footer-left {
    flex: 1 1 20%;
    margin-bottom: 20px;
}

.footer-logo {
    height: auto;
    width: 50%;
    display: inline-block;
}

.footer-left p {
    font-size: 16px;
    color: var(--font-color);
    margin-top: 10px;
    font-weight: 600;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a img {
    width: 20px;
    height: auto;
    transition: transform 0.5s ease;
}

.social-icons a:hover img {
    transform: scale(1.2);
}

/* Footer Center & Right (Company & Services) */
.footer-center,
.footer-right,
.footer-help,
.footer-payment {
    flex: 1;
    text-align: left;
    min-width: 200px;
}

.footer-center h2,
.footer-right h2,
.footer-help h2,
.footer-payment h2 {
    font-size: 18px;
    color: #002d5b;
    /* border-bottom: 2px solid var(--font2-color); */
    display: inline-block;
    padding-bottom: 5px;
    font-weight: bold;
}

.footer-center ul,
.footer-right ul,
.footer-help ul {
    list-style: none;
    padding: 0;
}

.footer-center ul li,
.footer-right ul li,
.footer-help ul li {
    margin: 5px 0;
}

.footer-center ul li a,
.footer-right ul li a,
.footer-help ul li a {
    color: #002d5b;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-center ul li a:hover,
.footer-right ul li a:hover,
.footer-help ul li a:hover {
    color: var(--font2-color);
}

/* Payment Logos */
.payment-logos {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.payment-logos img {
    width: 50px;
    transition: transform 0.3s ease;
}

.payment-logos img:hover {
    transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
    color: var(--font2-color);
    text-align: center;
    font-size: 14px;
    border-top: 1px solid #333;
    padding-top: 15px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        justify-content: space-between;
        text-align: center;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-help,
    .footer-payment {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .footer-left {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left,
    .footer-center,
    .footer-right,
    .footer-help,
    .footer-payment {
        width: 100%;
    }

    .footer-logo {
        margin: 10px auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-center ul,
    .footer-right ul,
    .footer-help ul {
        padding: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 10px;
    }

    .footer-left h2,
    .footer-center h2,
    .footer-right h2,
    .footer-help h2 {
        font-size: 16px;
    }

    .footer-center ul li a,
    .footer-right ul li a,
    .footer-help ul li a {
        font-size: 14px;
    }

    .footer-logo {
        width: 100px;
    }

    .social-icons img {
        width: 28px;
    }

    .payment-logos img {
        width: 40px;
    }
}

@media (max-width: 768px) {

    .footer-center ul,
    .footer-right ul,
    .footer-help ul {
        display: none;
        /* Hide lists initially */
    }

    .footer-center h2,
    .footer-right h2,
    .footer-help h2 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 18px;
        font-weight: bold;
        color: #002d5b;
        /* Adjust color */
        padding: 10px 0;
        border-bottom: 1px solid #ccc;
    }

    .toggle-icon {
        font-size: 18px;
        font-weight: bold;
        transition: transform 0.3s ease;
        display: inline-block;
    }
}

/* Hide the "+" symbol on larger screens */
@media (min-width: 769px) {
    .toggle-icon {
        display: none;
    }

    .footer-center ul,
    .footer-right ul,
    .footer-help ul {
        display: block;
    }
}

/* logo */
@media (max-width: 768px) {
    .footer-left {
        flex-direction: row;
        justify-content: center;
        text-align: center;
    }

    .footer-left h2 {
        font-size: 18px;
    }

    .footer-logo {
        width: 140px;
    }
}
/* for tablet */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
        padding: 20px;
    }

    .footer-sections {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        justify-content: space-between;
    }

    .footer-center,
    .footer-right,
    .footer-help {
        flex: 1 1 calc(33.33% - 20px);
        max-width: 33.33%;
        text-align: left;
    }

    .footer-payment {
        flex: 1 1 100%;
        max-width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .payment-logos {
        display: flex;
        gap: 10px;
        margin-top: 5px;
    }

    .payment-logos img {
        width: 50px;
        transition: transform 0.3s ease;
    }

    .payment-logos img:hover {
        transform: scale(1.1);
    }
}

/* phone */
@media (max-width: 768px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .footer-sections {
        width: 100%;
    }

    .footer-center,
    .footer-right,
    .footer-help {
        width: 100%;
        text-align: left;
        margin-bottom: 10px;
    }

    .footer-center h2,
    .footer-right h2,
    .footer-help h2 {
        font-size: 16px;
        font-weight: bold;
        color: #002d5b;
        padding: 8px 0;
        border-bottom: 1px solid #ccc;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 5px;
    }

    .footer-center ul,
    .footer-right ul,
    .footer-help ul {
        display: none;
        list-style: none;
        padding-left: 0;
        margin-top: 5px;
    }

    .footer-center.active ul,
    .footer-right.active ul,
    .footer-help.active ul {
        display: block;
    }

    .footer-payment {
        width: 100%;
        text-align: left;
        margin-top: 10px;
    }

    .payment-logos {
        display: flex;
        gap: 10px;
    }

    .payment-logos img {
        width: 50px;
        transition: transform 0.3s ease;
    }

    .payment-logos img:hover {
        transform: scale(1.1);
    }
}
