:root {
    --primary-color: #4a6cf7;
    --secondary-color: #6a7c92;
    --red-color: #DC143C;
    --navbar-bg-color: rgb(60, 60, 228);
    --navbar-fg-color: white;
    --green-color: #008000;
    --heading-color: #162447;
    --body-color: #637381;
    --hero-bg-color: #f3f4fe;
    --white: #ffffff;
    --border-radius: 10px;
    --icon-border-radius: 10%;
    --box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.hero {
    box-shadow: 0 0 0 100vmax #f3f4fe;
    clip-path: inset(0 -100vmax);
    background-color: #f3f4fe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background-color: var(--navbar-bg-color);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-container .nav-logo .logo-text {
    color: var(--navbar-fg-color);
}

.nav-container .nav-links a {
    color: var(--navbar-fg-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

/* could add color on hover: */
/* .nav-container .nav-links a:hover {
    color: gray;
} */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    border-radius: var(--icon-border-radius);
}

.navbar .nav-container .nav-logo .logo {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}



/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    min-height: 600px;
}

.hero-content {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
}

.app-store-badge img {
    height: 60px;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Features Section */

.features-subtitle {
    text-align: center;
    padding-bottom: 20px;
    font-size: 20px;
}

.features-table-container {
    overflow-x: auto;
    margin: 0 auto;
    max-width: 100%;
    background-color: var(--hero-bg-color);
    border-radius: var(--border-radius);
    padding: 0;
    box-shadow: var(--box-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: transparent;
    box-shadow: none;
}

.features-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.2em;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
}

/* Add padding to the table body cells only */
.features-table tbody td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}

.features-table th:first-child {
    width: 60%;
    border-top-left-radius: var(--border-radius);
}

.features-table th:not(:first-child) {
    text-align: center;
    width: 20%;
}

.features-table td {
    padding: 12px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background-color: transparent;
}


.features-table tr:last-child td {
    border-bottom: none;
    border-top-right-radius: var(--border-radius);
}

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


.features {
    background-color: white;
    padding: 30px 0;
}

.section-title {
    font-size: 40px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0px;
    color: #1d1d1f;
}

.plan-availability .fa-check {
    color: var(--primary-color);
    font-size: 1.5em;
}

.plan-availability .fa-times {
    color: var(--secondary-color);
    font-size: 1.5em;
}


/* .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
} */

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1d1d1f;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
    padding: 2px;
}

/* FAQ Section */
.faq {
    padding: 30px 0;
}

.faq-header {
    margin-bottom: 0;
    margin-top: 40px;
    background-color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 12px 12px 0 0;
}

.faq-header:first-child {
    margin-top: 0;
}

.faq-header .section-title {
    color: white;
    margin-bottom: 0;
    font-size: 28px;
}

.faq-content {
    /* display: flex; */
    align-items: center;
    gap: 60px;
}

.faq-text {
    flex: 1;
}

.faq-text h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.faq-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 10px 0;
    color: #666;
    position: relative;
    padding-left: 30px;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #007AFF;
    font-weight: bold;
}

/* Footer */
.footer {
    background-color: #1d1d1f;
    color: white;
    padding: 20px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px; */
}

.footer-section h4 {
    margin-bottom: 6px;
    font-size: 18px;
}

.footer-section a {
    display: block;
    color: #999;
    text-decoration: none;
    padding: 2% 0;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-content {
    padding: 0px 0px 20px 0px;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid #333;
    color: #666;
}

.faq {
    background-color: white;
}


.faq-section {
    background: white;
    border-radius: 12px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 40px;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: var(--hero-bg-color);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.icon {
    position: relative;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.icon::before,
.icon::after {
    content: '';
    position: absolute;
    background-color: #3498db;
    transition: all 0.3s ease;
}

.icon::before {
    width: 14px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon::after {
    width: 2px;
    height: 14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.faq-toggle:checked+.faq-question .icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.faq-toggle:checked+.faq-question {
    /* color: #3498db; */
    color: var(--navbar-bg-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 30px 25px 30px;
    color: #555;
    line-height: 1.8;
}

.faq-toggle:checked~.faq-answer {
    max-height: 500px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .faq-content {
        flex-direction: column;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .section-title {
        font-size: 32px;
    }
}

.hero-image img {
    max-width: 45%;
}

.logo-link img {
    height: 120px;
    border-radius: var(--icon-border-radius);
}

.footer-content {
    display: grid;
    align-items: top;
    grid-template-columns: 60% 20% 20%;
}

#features-and-faq {
    text-align: right;
}

#support {
    text-align: right;
}

.faq .faq-section {
    border: 1px solid rgba(0, 0, 0, 0.05);
}