/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Section */
.header {
    background-color: #f4f4f4;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px 0px;
}

.logo h1 {
    font-size: 1.8em;
    margin: 0;
    color: #333;
}

.logo h6 {
    margin: 5px 0 0;
    font-size: 0.75em;
    color: #666;
}

.menu {
    display: flex;
    gap: 15px 10px;
}

.menu .btn {
    text-decoration: none;
    padding: 8px 10px;
    background-color: #007bff;
    color: #fff;
    border-radius: 5px;
    font-size: 0.8em;
    transition: background-color 0.3s ease;
}

.menu .btn:hover {
    background-color: #0056b3;
}

/* Banner Section */
.banner {
    margin: 20px 0;
}

.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* About Section */
.about {
    padding: 40px 0;
    background-color: #f9f9f9; 
}

.about-title {
    font-size: 2em;
    margin-bottom: 20px;
    text-align: left; 
    color: #333; 
}

.about-description {
    font-size: 1.1em;
    color: #555; 
    line-height: 1.6; 
    text-align: justify; 
    margin-bottom: 20px; 
}

/* Responsive Styles for About Section */
@media (max-width: 768px) {
    .about-title {
        font-size: 1.5em;
    }

    .about-description {
        font-size: 1em; 
    }
}


/* ChromaGen Lenses Section */
.chromagen-lenses {
    padding: 60px 0;
    background: #f4f4f4; 
    border-top: 2px solid #353da1;
}

.lenses-row{
    align-items: center;
}

.chromagen-title {
    font-size: 2em; 
    margin-bottom: 40px;
    /* color: #353da1; */
    font-weight: bold; 
    text-align: center;
}

.additional-links {
    margin-top: 20px; 
}

.link-cards {
    display: flex; 
    flex-direction: column; 
    gap: 15px;
}

.link-card {
    background: #fff; 
    border-radius: 5px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); 
    padding: 15px; 
    text-align: center; 
    transition: transform 0.3s; 
}

.link-card:hover {
    transform: translateY(-3px); 
}

.link-card h6 {
    margin: 0; 
    font-size: 1.1em; 
    color: #353da1; 
}

.link-card h6 a {
    text-decoration: none; 
    color: inherit; 
}

.link-card h6 a:hover {
    color: #222;
}

.product-card {
    background: #fff; 
    border-radius: 8px; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
    margin: 20px auto;
    text-align: center; 
    overflow: hidden; 
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    max-width: 100%;
    height: auto; 
}

.card-content {
    padding: 20px; 
}

.price-info {
    color: #333;
    font-weight: bold;
    font-size: 1.3em; 
    margin: 20px 0;
}

.stripe-button-container {
    text-align: center; 
    margin: 30px 0; 
}

.stripe-button {
    background: #353da1;
    color: #fff;
    border: 0;
    padding: 10px 20px;
    border-radius: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s; 
}

.stripe-button:hover {
    background: #2a2f87;
    color: #fff;
}


/* Patient Enhancement Section */
.patient-enhancement {
    padding: 60px 0; 
    background: #e9f4ff; 
    text-align: center; 
}

.enhancement-title {
    font-size: 2em; 
    /* color: #353da1; */ 
    margin: 15px 0; 
}

.links {
    margin-top: 30px; 
}

.enhancement-link {
    font-size: 1.5em; 
    color: #353da1; 
    text-decoration: none; 
    padding: 10px 15px; 
    border-radius: 5px; 
    display: inline-block; 
    transition: background 0.3s, color 0.3s; 
}

.enhancement-link:hover {
    background: #353da1; 
    color: #fff; 
}


/* General Section Styling */
.chromagen-dyslexia {
    padding: 60px 0;
    background-color: #f5f7fa;
}

/* Title Styling */
.section-title {
    font-size: 2em;
    /* color: #353da1; */
    margin-bottom: 20px;
    text-align: left;
}

.section-description {
    margin-bottom:40px;
}

/* Intro Text Styling */
.intro-text {
    font-size: 1.1em;
    text-align: justify;
}

.intro-description {
    margin-bottom: 40px;
}

/* Image and Description Layout */
.image-description {
    display: flex;
    align-items: center;
    gap: 15px;
}

.image-description a{
    flex:50%;
}

.image-description .responsive-img {
    max-width: 100%;
    height: auto;
    margin-right: 20px;
}

.image-description p {
    font-size: 1.1em;
    text-align: justify;
}

/* Testimonials Styling */
.testimonials {
    background-color: #e9f4ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.testimonials blockquote {
    font-style: italic;
    margin: 10px 0;
    padding: 10px;
    border-left: 4px solid #353da1;
}

/* General FAQ Section Styling */
.faq-section {
    padding: 60px 20px;
    /* background-color: #f5f7fa; */
}

/* FAQ Title Styling */
.faq-title {
    text-align: center;
    font-size: 2em;
    /* color: #353da1; */
    margin-bottom: 40px;
}

/* Accordion Item Styling */
.accordion {
    border: 1px solid #353da1;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion-item {
    border-bottom: 1px solid #e1e1e1;
}

.accordion-header {
    background-color: #353da1;
    color: white;
    padding: 15px;
    cursor: pointer;
    font-size: 1.2em;
    border-radius: 8px 8px 0 0;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #ffffff;
    font-size: 1em;
    line-height: 1.6;
    border-radius: 0 0 8px 8px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .accordion-header {
        font-size: 1em;
    }
}


/* App section */
.app-section {
    padding: 40px 20px;
    background-color: #f5f7fa;
}

.app-section p {
    margin-bottom: 20px;
}

.app-section img {
    max-width: 100px;
    margin: 10px;
}

.app-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    text-align: center;
}
.app-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
.app-section p {
    font-size: 18px;
    margin-bottom: 30px;
}
.app-download {
    display: inline-block;
    width: 80%;
    max-width: 400px;
    border: 2px solid #0056b3;
    border-radius: 8px;
    padding: 20px;
    background-color: #ffffff;
}
.app-download h4 {
    margin: 0;
    color: #0056b3;
}
.app-download p {
    margin: 5px 0;
    color: #333333;
}
.qr-codes {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.app-section .qr-image {
    width: 150px;
    max-width: 100%;
    border-radius: 5px;
}
.app-links {
    margin-top: 30px;
}
.app-section .app-icon {
    width: 150px;
    max-width: 150px;
    margin: 0 10px;
}
.contact-info {
    margin-top: 40px;
}
.contact-info p {
    font-size: 18px;
    margin-bottom: 10px;
}
.email-icon {
    width: 50px;
}


.footer-section {
    padding: 20px;
    background-color: #f1f1f1;
    text-align: center;
    font-family: Arial, sans-serif;
}
.footer-content p {
    margin: 10px 0;
    color: #333;
}
.footer-link {
    color: #0056b3;
    text-decoration: none;
    font-weight: bold;
}
.footer-link:hover {
    text-decoration: underline;
}
.social-icons {
    margin: 10px 0;
}
.social-icon {
    width: 24px;
    margin: 0 10px;
}
.footer-divider {
    margin: 20px 0;
    border: 0;
    border-top: 1px solid #ccc;
}
.text-center {
    text-align: center;
}


/* Responsive Styles */
@media (max-width: 1140px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .menu {
        flex-direction: column;
        gap: 10px;
        margin-top: 15px;
    }

    .product-cards {
        flex-direction: column;
    }
}


