/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Funnel Sans", sans-serif;
    line-height: 140%;
    color: #222;
    font-size: 16px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Funnel Display", sans-serif;
    line-height: 140%;
    color: #222222;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

h1 {
    font-size: 3rem;
    font-weight: 600;
    margin: 0;
    line-height: 120%;
}

h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 0.8rem 0;
}

h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

h4 {
    font-size: 1.2rem;
    font-weight: 600;
}

a {
    color: #4F5CEE;
}

a:hover {
    opacity: 0.7;
}

p {
    line-height: 140%;
}


header {
    background-color: #ffffff;
    padding: 12px 24px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    background-color: #E3FBFC;
    padding: 16px 32px;
    border-radius: 99px;
}

.medium-container .header {
    text-align: center;
}

.header-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.header-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.logo {
    max-height: 32px;
}

.logo img {
    height: 32px; /* Adjust size as needed */
    
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

nav ul li a {
    text-decoration: none;
    color: #222;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px; /* adjust based on header height */
        right: 20px;
        background-color: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
        align-items: baseline;
        border-radius: 0.5rem;
        gap: 1rem;
    }

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

    .menu-toggle {
        display: block;
    }
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0.5rem 0;
    min-width: 260px;
    z-index: 1000;
    border-radius: 0.5rem;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
}

.dropdown-menu li a:hover {
    background-color: #f2f2f2;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
    display: block;
}

.arrow {
    display: inline-block;
    margin-left: 6px;
    vertical-align: middle;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333; /* change color as needed */
}

/* Show dropdown on click (mobile) */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        padding-left: 1rem;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
}

.main {
    padding: 4rem 1rem;
}

.main-container {
    max-width: 1280px;
    margin: 1.5rem auto;
}

.content ul,
.content ol {
    padding: 0 0 16px 32px;
}

.content ul li,
.content ol li {
    padding: 8px 0;
}

.content p {
    margin-bottom: 12px;
    text-align: justify;
}

.hero {
    background-color: rgba(210,232,233, 0.20);
    padding: 4rem 1.5rem;
    text-align: center;
}

.content {
    max-width: 1080px;
    margin: 1.5rem auto;
    padding: 0 1.5rem;
}

.legal-content-grid {
    grid-template-rows: auto;
    grid-template-columns: .5fr 1fr;
    align-content: start;
    align-items: start;
    position: relative;
    display: grid;
    gap: 32px;
}

.legal-menu-wrapper {
    padding-top: 0;
    position: sticky;
    top: 4rem;
}

.legal-menu-title p {
    opacity: 0.5;
    text-transform: uppercase;
    padding: 4px 8px;
}

.legal-menu-item {
    padding: 4px 8px;
    border-radius: 4px;
}

.legal-menu-link {
    color:#222222;
    text-decoration:none;
}

.legal-menu-item:hover {
    background-color: #f8f8f8;
}

.list-item-no-decoration {
    list-style-type: none;
}

table th, td {
    padding: 12px;
    border: 1px solid #eaeaea;
    text-align: left; 
}

table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 12px;
    margin: 12px 0;
}

td {
    vertical-align: top;
}

.primary-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    text-decoration: none;
    background-color: #222222;
    color: #ffffff;
    border-radius: 6px;
    opacity:1;
    transition: background 1s;
}

.primary-button:hover {
    background-color:#4F5CEE;
    color: #ffffff;
    opacity: 1;
}

.secondary-button {
    display: inline-block;
    padding: 12px 24px;
    font-size: 18px;
    color: #222222;
    background-color: transparent;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #222222;
    opacity:1;
    transition: background 1.2s;
}

.secondary-button.small,
.primary-button.small {
    padding: 6px 12px;
    font-size: 16px;
}


.secondary-button:hover {
    background-color:#4F5CEE;
    color: #ffffff;
    opacity: 1;
    border: 1px solid #4F5CEE;
}

.call-to-action {
    background-color: #F6FAFB;
    padding: 5rem 1rem;
}

.call-to-action.light-blue {
    background-color: #E3FBFC;
}


.dark-blue {
    background-color:#253D4F;
}

.medium-container {
    max-width: 800px;
    margin: 0 auto;
}

.medium-container .description {
    text-align: center;
}

.medium-container .description p {
    font-size: 1.2rem;
}

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

.text-white {
    color: #ffffff;
}

.demo {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.demo-store-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border: 3px solid #253D4F;
    box-shadow: 6px 6px 0px #253D4F;
    border-radius: 1.5rem;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    border-radius: 8px;
    display: flex;
    align-items: center;
    text-align: left;
    flex-direction: column;
    gap: 1rem;
    
}

.benefit-icon-wrapper {
    max-width: 48px;
    max-height: 48px;
}

.benefit-icon {
    height: 32px;
    width: auto;
}

.benefit-content {
    text-align: center;
}

.apps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.app-card {
    display: flex;
    align-items:flex-start;
    flex-direction: column;
    gap: 1rem;
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 1rem;
}

.app-content {
     display: flex;
    align-items:flex-start;
    flex-direction: column;
    gap: 1rem;
}

.app-icon-wrapper {
    height: 250px;
}

.app-image {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.app-title {
    font-size: 20px;
    font-weight: 600;
}

.app-link {
    color: #222;
    text-decoration: none;
}

.pricing {
    text-align: center;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.pricing-container {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background-color: #F6FAFB;
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    gap: 3rem;
    align-items:center;
    text-align: left;
}

.pricing-card .price,
.pricing-card .amount {
    font-size: 2rem;
    line-height: 140%;
}

.pricing-card .amount {
    opacity: 0.8;
}

.pricing-card-content a {
    margin-bottom: 0.5rem;
}

.pricing-card-content p {
    opacity: 0.6;
}

.pricing-card .price {
    font-weight: 600;
}

footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 12px 0;
    margin-top: 1.5rem;
}

@media (max-width:991px) {
    .legal-content-grid {
        grid-template-columns:1fr;
    }
    .legal-menu-wrapper {
        position: unset;
    }
}
