/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Mobile Header */
.mobile-header {
    background: #FFFFFF;
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
}

/* Top Navigation Row */
.top-navigation {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100px;
    padding: 0 24px;
}

.nav-icon {
    background: none;
    border: none;
    cursor: pointer;
    padding: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-icon svg {
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-left: 0;
    width: 32px;
    height: 54px;
}

.header-icons {
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 21px;
}

/* Category Navigation Row */
.category-navigation {
    position: relative;
    height: 70px;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.category-arrow {
    position: absolute;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F5F5F5;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background-color 0.2s ease, transform 0.15s ease;
    top: 50%;
    transform: translateY(-50%);
}

.category-arrow:hover {
    background: #E8E8E8;
}

.category-arrow:active {
    background: #DDDDDD;
}

.category-arrow.left {
    left: 8px;
}

.category-arrow.right {
    right: 8px;
}

.category-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    flex: 1;
    min-width: 0;
    margin: 0 24px;
}

.category-viewport::-webkit-scrollbar {
    height: 2px;
}

.category-viewport::-webkit-scrollbar-track {
    background: #FFFFFF;
    border-radius: 3px;
}

.category-viewport::-webkit-scrollbar-thumb {
    background: #007F8C;
    border-radius: 3px;
}

.category-viewport::-webkit-scrollbar-thumb:hover {
    background: #006B75;
}

.category-list {
    display: flex;
    width: max-content;
    white-space: nowrap;
}

.category {
    display: inline-block;
    font-size: 18px;
    color: #111111;
    padding: 0 16px;
    cursor: pointer;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.category.active {
    color: #007F8C;
    font-weight: 700;
}

.category.active .underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 2px;
    width: 145px;
    background: #007F8C;
}

/* Hero Section */



.hero__description {
    font-size: 16px;
    margin-bottom: 16px;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn--primary {
    background-color: #007B85;
    color: #fff;
    border: none;
}

.btn--primary:hover {
    background-color: #005f6a;
}

.btn--secondary {
    background-color: #fff;
    color: #007B85;
    border: 2px solid #007B85;
}

.btn--secondary:hover {
    background-color: #f0f0f0;
}

/* Pill Button */
.btn-pill {
    width: 100%;
    max-width: 400px;
    height: 72px;
    background: #111111;
    border: 1px solid #111111;
    border-radius: 9999px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .btn-pill {
        height: 60px;
        font-size: 18px;
    }

    .hero__image-wrapper {
        aspect-ratio: 1440 / 450;
        height: auto;
    }
}

/* Features Section */
.features {
    padding: 30px 0;
    background: #fff;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 24px;
}

.features__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.feature-card__image {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.feature-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card__content {
    padding: 16px;
}

.feature-card__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
}

.feature-card__description {
    color: #666;
    margin-bottom: 8px;
}

.icon-link {
    color: #007B85;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 4px;
}

.icon-link:hover {
    text-decoration: underline;
}

/* Section Heading */
.section-heading {
    padding: 20px 0;
    background: #f9f9f9;
}

/* Large Promo Section */
.large-promo {
    padding: 30px 0;
}

.large-promo__item {
    margin-bottom: 24px;
}

.large-promo__item--reverse .large-promo__content {
    flex-direction: column-reverse;
}

.large-promo__content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.large-promo__image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.large-promo__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.large-promo__text {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 24px;
    max-width: 500px;
}

.large-promo__item--reverse .large-promo__text {
    padding: 0 22px;
}

.large-promo__title {
    font-size: 24px;
    font-weight: 400;
    color: #3F3F43;
    line-height: 1.3;
    margin-bottom: 42px;
}

.large-promo__title a {
    color: #007B85;
}

.large-promo__description {
    color: #747478;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 42px;
}

/* CTA Section */
.cta-section {
    padding: 30px 0;
    text-align: center;
    background: #f9f9f9;
}

/* FAQ Section */
.faq-section {
    padding: 12px;
    background: #FFFFFF;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 400;
    color: #050505;
    margin-left: 12px;
    margin-bottom: 12px;
    line-height: 1.18;
}

.faq-divider {
    display: none;
}

.accordion-item {
    border-bottom: 1px solid #D9D9D9;
    margin: 0 12px;
}

.accordion {
    max-width: 100%;
    margin: 0;
}

.accordion__header {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.accordion__title {
    font-weight: 700;
    color: #007F95;
    font-size: 24px;
    line-height: 1.18;
    margin-left: 0;
    order: 1;
}

.accordion__header[aria-expanded="true"] .accordion__title {
    color: #000000;
}

.accordion__icon {
    font-size: 44px;
    color: #007F95;
    margin-right: 20px;
    transition: transform 0.3s;
    font-weight: 300;
    order: 2;
}

.accordion__icon--closed {
    display: inline;
}

.accordion__icon--open {
    display: none;
}


.accordion__header[aria-expanded="true"] .accordion__icon--closed {
    display: none;
}

.accordion__header[aria-expanded="true"] .accordion__icon--open {
    display: inline;
}

.accordion__panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion__panel.open {
    max-height: 500px;
    padding: 20px;
}

.accordion__panel p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #fff;
}

/* Footer Accordion */
.footer-accordion {
    width: 100%;
}

.footer-accordion-item {
    border-bottom: 1px solid #D5E5E8;
}

.footer-accordion-header {
    width: 100%;
    height: 75px;
    padding: 0 17px 0 17px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.footer-accordion-title {
    font-size: 21px;
    font-weight: bold;
    color: #000000;
}

.footer-accordion-chevron {
    margin-right: 32px;
    transition: transform 0.3s;
}

.footer-accordion-header[aria-expanded="true"] .footer-accordion-chevron {
    transform: rotate(180deg);
}

.footer-accordion-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.footer-accordion-panel.open {
    max-height: 500px;
}

.footer-accordion-content {
    padding: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #000000;
    text-decoration: none;
    font-size: 16px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Footer Social */
.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding: 45px 0;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
}

.footer-social-icon svg {
    width: 32px;
    height: 32px;
}

/* Footer Regulatory */
.footer-regulatory {
    max-width: 540px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-regulatory p {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.45;
    margin-bottom: 28px;
}

.footer-regulatory p:last-child {
    margin-bottom: 0;
}

/* Footer Copyright */
.footer-copyright {
    background: #087C89;
    height: 73px;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.footer-copyright span {
    font-size: 21px;
    font-weight: 400;
    color: #ffffff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: #000;
}

.modal-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.modal-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.modal-content input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 20px;
    box-sizing: border-box;
}

.modal-content input:focus {
    outline: none;
    border-color: #007B85;
}

.modal-content button {
    width: 100%;
    padding: 12px;
    background: #111111;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.modal-content button:hover {
    background: #333;
}

#codeError {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 10px;
    display: none;
}

#codeError.show {
    display: block;
}


