/* Hero Banner Styles */
.hero-banner {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 500px;
    background-image: url('/images/home/Group 8663@2x.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.hero-content {
    position: absolute;
    z-index: 2;
    padding: 0 60px 0 60px;
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero-text {
    margin-bottom: 2.5rem;
}

/* yjnpascua: Updated all fonts to Helvetica for consistency */
.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    font-family: 'Helvetica', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-text h2 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0;
    line-height: 1.1;
    font-family: 'Helvetica', sans-serif;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.text-red {
    color: #ce4f49;
}

.hero-search {
    width: 100%;
    max-width: 600px;
}

.search-container {
    position: absolute;
    width: 85%;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #4a5568;
    background: transparent;
    font-weight: 500;
    letter-spacing: 0.025em;
}

.search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.search-btn {
    background: #ce4f49;
    border: none;
    padding: 1rem 1.5rem;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    min-width: 60px;
    border-radius: 0 50px 50px 0;
}

.search-btn:hover {
    background: #b73e37;
}

.search-icon {
    width: 24px;
    height: auto;
}

/* Feature Product Section Styles */
.feature-product {
    background-color: #ffffff;
    padding-top: 70px;
}

.feature-product-container {
    padding: 30px 20px 43px;
}

.feature-product-content {
    text-align: center;
}

.feature-product-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

/* Make all feature cards equal height */
#featured-products-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-left: -15px;
    margin-right: -15px;
}

.feature-card {
    display: flex;
    padding: 10px;
    flex: 1;
    min-height: 500px; /* Set minimum height for consistency */
    margin-bottom: 20px;
}

/* Ensure Bootstrap columns work with flexbox */
.feature-card.col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding-left: 15px;
    padding-right: 15px;
}

.feature-product-item {
    padding: 45px 25px 35px;
    box-shadow: 0px 3px 6px #00000029;
    border-radius: 20px;
    opacity: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Make the product details section flexible to fill remaining space */
.feature-product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

/* Ensure the content area takes up available space */
.feature-product-item .row {
    display: flex;
    align-items: stretch;
}

.feature-product-item .col-md-7 {
    display: flex;
    flex-direction: column;
}

/* Make product description area flexible with minimum height */
.product-description {
    font-size: 12px;
    color: #8D8D8B;
    margin-bottom: 15px;
    min-height: 45px; /* Ensure consistent space even when empty */
    display: block; /* Change from flex to block for proper text flow */
    align-items: flex-start;
    flex: 1; /* Take up remaining space in content area */
    text-align: left; /* Ensure text flows normally */
}

/* Ensure consistent spacing for product details section */
.feature-product-content > .row {
    margin-bottom: 15px;
    flex-shrink: 0; /* Don't shrink the product details */
}

/* Add consistent spacing for product variants section */
.product-variants {
    display: flex;
    width: 100%;
    gap: 10px;
    margin-bottom: 15px;
}

/* Ensure the bottom section (button and info link) stays at bottom */
.feature-product-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
    min-height: 280px; /* Minimum height for content area */
}

.feature-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.feature-product-bottom {
    margin-top: auto;
    display: flex;
    flex-direction: column;
}

/* Product Image Container */
.product-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-product-image {
    max-width: 120%;
    height: auto;
    object-fit: contain;
}


.feature-product-price {
    font-weight: 700;
    font-size: 1.8rem;
    color: #000000;
    text-align: center;
}

.product-name {
    font-weight: 700;
}

.product-label {
    font-weight: 500;
    font-size: 12px;
    color: #8D8D8B;
}

.product-label-text {
    font-size: 12px;
    color: #8D8D8B;
    margin-bottom: 0px;
}

.select-dosage, .select-pill-count {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.feature-select {
    background-color: #f6f6f6;
    color: #8D8D8D;
    border: 1px solid #E1E1E1;
    font-size: 12px;
    text-align: center;
}

.feature-button {
    margin-top: 15px;
    text-align: center;
    padding: 8px;
    background-color: #CE4F49;
    border-radius: 7px;
    width: 100%;
    height: auto;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 12px;
}

.full-product-info {
    text-align: center;
    color: #666666;
    font-size: 15px;
    padding-top: 5px;
    cursor: pointer;
}

.full-product-info:hover {
    color: #CE4F49;
    font-weight: 500;
}

/* Read More link styling */
.product-description .read-more-link {
    color: #CE4F49 !important;
    text-decoration: none !important;
    font-weight: 600;
    font-size: inherit; /* Use same font size as parent description */
    cursor: pointer !important;
    transition: all 0.3s ease;
    display: inline !important; /* Ensure it stays inline with text */
    margin-left: 0;
    padding: 0;
    white-space: nowrap; /* Prevent line break */
}

.product-description .read-more-link:hover {
    color: #b03a35 !important;
    text-decoration: underline !important;
}

/*Updated disclaimer to 50% width and centered */
.product-disclaimer {
    text-align: center;
    margin: 0 auto;
    width: 50%;
    padding-top: 1rem;
    padding-bottom: 3rem;
}

.product-disclaimer p {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.5;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

/* Responsive disclaimer for mobile */
@media (max-width: 767.98px) {
    .product-disclaimer {
        width: 90%;
    }

    .product-disclaimer p {
        font-size: 0.8rem;
    }
}

/* VIEWPORTS */
/* Smaller laptop adjustments */
@media (max-width: 1200px) {

}

@media (max-width: 1024px) {
    .hero-banner {
        height: 50vh;
        min-height: 450px;
        background-position: center center;
    }

    .hero-content {
        padding: 0 80px;
        max-width: 600px;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 2.5rem;
    }

    .hero-search {
        max-width: 500px;
    }

    /* Adjust card height for tablet screens */
    .feature-card {
        min-height: 480px;
    }
}

/* Responsive header padding adjustments */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 120px;
        max-width: 750px;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-search {
        max-width: 550px;
    }

    /* Adjust card height for large tablets */
    .feature-card {
        min-height: 490px;
    }
}

/* Tablet/iPad specific adjustments */
@media (max-width: 991.98px) and (min-width: 768px) {
    .hero-banner {
        height: auto;
        min-height: 115vw;
        background-image: url('/images/home/Rectangle 17029@2x.jpg');
        background-position: center center;
        background-size: cover;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-search {
        margin-top: -40px;
    }

    /* Bootstrap medium breakpoint - 2 columns */
    .feature-card.col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feature-card {
        min-height: 470px;
    }
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
    .hero-banner {
        height: auto;
        min-height: 115vw;
        background-image: url('/images/home/Rectangle 17029@2x.jpg');
        background-position: center center;
        background-size: cover;
        align-items: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .hero-content {
        padding: 0 40px;
        width: 100%;
        max-width: none;
        align-items: center;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-image {
        width: 68%;
    }

    /* .hero-search {
        max-width: 100%;
        margin-top: -20px;
    } */

    .search-container {
        position: relative;
        width: 100%;
    }

    .search-input {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }

    .search-btn {
        padding: 0.875rem 1.25rem;
    }

    .search-icon {
        width: 20px;
    }

    /* Bootstrap small breakpoint - 2 columns */
    .feature-card.col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .feature-card {
        min-height: 460px;
    }
}

@media only screen and (max-width: 515px) {
    .hero-banner {
        min-height: 450px;
        background-image: url('/images/home/Rectangle 17029@2x.jpg');
        background-position: center center;
        background-size: cover;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .hero-content {
        padding: 0 20px;
        width: 100%;
    }

    .hero-text {
        margin-bottom: 1.5rem;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .search-input {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .search-btn {
        padding: 0.75rem 1rem;
        min-width: 50px;
    }

    .search-icon {
        width: 18px;
    }

}

@media (max-width: 767.98px) {
    .hero-search {
        max-width: 100%;
        margin-top: -20px;
    }

    /* Mobile - single column layout */
    .feature-card.col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Maintain equal height on mobile but adjust minimum height */
    .feature-card {
        min-height: 450px; /* Reduced height for mobile */
    }

    .feature-product-item .row {
        flex-direction: column;
        align-items: center;
        display: flex;
        flex: 1;
    }

    .feature-product-item .col-md-5,
    .feature-product-item .col-md-7 {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    /* Mobile styling for new product containers */
    .product-image-container {
        padding: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .feature-product-image {
        display: block;
        margin-left: auto;
        margin-right: auto;
        max-width: 85%;
        height: auto;
    }
    
    .product-price-container {
        margin: 0 0.5rem;
        padding: 0.6rem;
    }
    
    .feature-product-price {
        font-size: 1.5rem;
    }

    .feature-product-details {
        text-align: center;
        display: flex;
        flex-direction: column;
        flex: 1;
        justify-content: space-between;
        min-height: 300px; /* Slightly more height on mobile for better spacing */
    }

    .feature-product-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .feature-product-bottom {
        margin-top: auto;
        display: flex;
        flex-direction: column;
    }

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

    .product-variants {
        justify-content: center;
    }
}

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-content {
        padding: 0 0 0 200px;
        max-width: 900px;
    }

    .hero-text h1,
    .hero-text h2 {
        font-size: 4rem;
    }

    .hero-search {
        max-width: 700px;
    }
}

/* How It Works Section */
.how-it-works {
    background-color: #FEF9F8;
    padding: 80px 0;
}

.how-it-works-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-header .header-line {
    width: 60px;
    height: 6px;
    background-color: #d1d5db;
    margin: 0 auto 20px;
    border-radius: 6px;
}

.how-it-works-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #CE4F49;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.how-it-works-steps {
    margin-top: 40px;
}

.step-card {
    background: #ffffff8a;
    border-radius: 12px;
    padding: 30px 25px;
    height: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e5e7eb;
}


.step-icon {
    text-align: center;
    margin-bottom: 25px;
    height: 100px;
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step-icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Center step content details */
.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
    line-height: 1.4;
    font-family: 'Helvetica', sans-serif;
}

.step-number {
    color: #ce4f49;
    font-weight: 700;
}

.step-content p {
    text-align: center;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.step-details {
    text-align: center;
    margin-top: 15px;
}

.step-details p {
    text-align: center;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.step-details strong {
    color: #2d3748;
}

/* Custom Icons */
.icon-search {
    width: 60px;
    height: 60px;
    position: relative;
}

.browser-window {
    width: 100%;
    height: 100%;
    background: #ce4f49;
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px;
}

.browser-item {
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 3px;
}

.browser-item.right {
    position: relative;
}

.magnifying-glass {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 25px;
    height: 25px;
    border: 3px solid #ce4f49;
    border-radius: 50%;
    background: white;
}

.magnifying-glass::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: -8px;
    width: 12px;
    height: 3px;
    background: #ce4f49;
    transform: rotate(45deg);
}

.icon-computer {
    width: 60px;
    height: 60px;
    position: relative;
}

.computer-monitor {
    width: 100%;
    height: 100%;
    background: #ce4f49;
    border-radius: 8px;
    position: relative;
    padding: 8px;
}

.screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 4px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}

.input-field {
    height: 6px;
    background: #e5e7eb;
    border-radius: 2px;
}

.input-field.password {
    background: #d1d5db;
}

.login-button {
    width: 20px;
    height: 6px;
    background: #ce4f49;
    border-radius: 2px;
    align-self: center;
}

.icon-prescription {
    width: 60px;
    height: 60px;
    position: relative;
}

.prescription-document {
    width: 100%;
    height: 100%;
    background: white;
    border: 2px solid #ce4f49;
    border-radius: 6px;
    position: relative;
    padding: 8px;
}

.rx-symbol {
    position: absolute;
    top: 4px;
    left: 4px;
    font-size: 12px;
    font-weight: bold;
    color: #ce4f49;
    font-family: 'Helvetica', sans-serif;
}

.document-lines {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.line {
    height: 2px;
    background: #d1d5db;
    border-radius: 1px;
}

.line:nth-child(1) { width: 80%; }
.line:nth-child(2) { width: 90%; }
.line:nth-child(3) { width: 70%; }
.line:nth-child(4) { width: 85%; }

.icon-delivery {
    width: 60px;
    height: 60px;
    position: relative;
}

.delivery-truck {
    width: 100%;
    height: 100%;
    position: relative;
}

.truck-cab {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 25px;
    background: #ce4f49;
    border-radius: 4px 0 0 4px;
}

.truck-cab::before {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.truck-cargo {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 25px;
    height: 20px;
    background: #4a5568;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.package {
    width: 8px;
    height: 8px;
    border-radius: 1px;
}

.package.brown {
    background: #8b4513;
}

.package.white {
    background: white;
    position: relative;
}

.heart {
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 4px;
    background: #ce4f49;
    border-radius: 50% 50% 0 0;
    transform: translateX(-50%) rotate(-45deg);
}

.heart::before,
.heart::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ce4f49;
    border-radius: 50%;
}

.heart::before {
    top: -2px;
    left: -2px;
}

.heart::after {
    top: -2px;
    right: -2px;
}

/* Prescription options styling */
/* Fixed prescription options styling for centered list */
.prescription-options {
    list-style: none;
    padding: 0;
    text-align: left;
    display: inline-block;
    margin: 15px auto;
    width: 100%;
}

.prescription-options li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.4;
}

.prescription-options li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 6px;
    height: 6px;
    background: #ce4f49;
    border-radius: 50%;
}

/* Fixed pharmacy info styling */
.pharmacy-info {
    background: #f7fafc;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin: 10px auto;
    max-width: 300px;
}

.pharmacy-info p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive Design for How It Works */
@media (max-width: 991.98px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-it-works-header h2 {
        font-size: 2rem;
    }

    .step-card {
        padding: 25px 20px;
    }
}

@media (max-width: 767.98px) {
    .how-it-works {
        padding: 40px 0;
    }

    .how-it-works-header {
        margin-bottom: 40px;
    }

    .how-it-works-header h2 {
        font-size: 1.75rem;
    }

    .step-card {
        margin-bottom: 20px;
        padding: 20px 15px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .step-icon {
        height: 60px;
        margin-bottom: 20px;
    }

    .icon-search,
    .icon-computer,
    .icon-prescription,
    .icon-delivery {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 575.98px) {
    .how-it-works-header h2 {
        font-size: 1.5rem;
    }

    .step-card {
        padding: 15px 12px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .prescription-options li {
        font-size: 0.8rem;
    }

    .pharmacy-info p {
        font-size: 0.8rem;
    }
}

/* Step header centering and styling */
.step-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}
.step-header .step-number {
    color: #ce4f49;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 4px;
    text-align: center;
}
.step-header .step-title {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 0;
    font-family: 'Helvetica', sans-serif;
}
/* End step header styling */

@media (max-width: 767.98px) {
    .step-header .step-number,
    .step-header .step-title {
        font-size: 1rem;
    }
}

/* Need Help Section */
.need-help-section {
    background-image: url('/images/home/Mask Group 15@2x.jpg');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    padding: 80px 0;
    overflow: hidden;
    position: relative;
}

/* Add overlay to ensure text readability */
.need-help-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.need-help-section .row {
    position: relative;
    z-index: 2;
}

.help-image-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.help-content {
    padding: 40px 30px;
    text-align: left;
}

.help-content h2 {
    font-size: 50px;
    font-weight: 700;
    color: #111111;
    margin-bottom: 20px;
    font-family: 'Helvetica', sans-serif;
}

.help-content p {
    font-size: 30px;
    color: #2e2e2e;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Campton', sans-serif;
}

.help-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 50%;
}

.btn-help {
    display: block;
    padding: 15px 30px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    font-family: 'Helvetica', sans-serif;
    border: none;
    cursor: pointer;
    min-width: 150px;
}

.btn-get-help {
    background-color: #ce4f49;
    color: white;
}

.btn-get-help:hover {
    background-color: #b03a35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(206, 79, 73, 0.3);
}

.btn-faqs {
    background-color: #ce4f49;
    color: white;
}

.btn-faqs:hover {
    background-color: #b03a35;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(206, 79, 73, 0.3);
}

/* Responsive Design for Need Help Section */
@media (max-width: 991.98px) {
    .need-help-section {
        padding: 60px 0;
        height: auto;
        min-height: 50vh;
    }

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

    .help-content h2 {
        font-size: 2rem;
    }

    .help-content p {
        font-size: 1rem;
    }

    .help-buttons {
        width: 100%;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .need-help-section {
        padding: 40px 0;
        height: auto;
        min-height: 40vh;
    }

    .help-content {
        padding: 20px 15px;
        background-color: #dfdbb399;
        border-radius: 8px;
    }

    .help-content h2 {
        font-size: 1.75rem;
    }

    .help-content p {
        font-size: 0.95rem;
    }

    .btn-help {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 200px;
    }

    .help-buttons {
        width: 100%;
        align-items: center;
    }
}

/* FAQ Section */
.faq-section {
    background-color: white;
    padding: 80px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header .header-line {
    width: 60px;
    height: 6px;
    background-color: #d1d5db;
    margin: 0 auto 20px;
    border-radius: 6px;
}

.faq-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-item {
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.faq-question h3 {
    font-size: 30px;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
    font-family: 'Helvetica', sans-serif;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    position: relative;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #C7C7C7;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-icon .plus,
.faq-icon .minus {
    font-size: 15px;
    font-weight: bold;
    color: #C7C7C7;
    transition: all 0.3s ease;
}

.faq-icon .minus {
    display: none;
}

.faq-item.active .faq-icon .plus {
    display: none;
}

.faq-item.active .faq-icon .minus {
    display: block;
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 25px 0;
}

.faq-answer p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Helvetica', sans-serif;
}

.faq-answer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 15px 0;
}

.faq-answer li {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 8px;
    font-family: 'Helvetica', sans-serif;
}

.faq-answer li:last-child {
    margin-bottom: 0;
}

/* FAQ Call to Action */
.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #f3f3f3 85%, #e0e0e0 85%);
    padding: 40px 50px;
    border-radius: 28px;
    text-decoration: none;
    color: #111;
    font-weight: 700;
    font-size: 28px;
    font-family: 'Helvetica', sans-serif;
    transition: all 0.3s ease;
    min-width: 600px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.03);
}

.faq-cta-link span {
    flex: 1;
    text-align: left;
    padding-right: 30px;
}

.faq-arrow {
    font-style: normal;
    font-weight: bold;
    color: #888;
    font-size: 20px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 28px 28px 0;
    padding: 20px 40px;
    margin: -40px -50px -40px 0;
    min-width: 60px;
}

/* Responsive Design for FAQ Section */
@media (max-width: 991.98px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-header h2 {
        font-size: 2rem;
    }

    .faq-accordion {
        max-width: 100%;
        padding: 0 20px;
    }
}

@media (max-width: 767.98px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header {
        margin-bottom: 40px;
    }

    .faq-header h2 {
        font-size: 1.75rem;
    }

    .faq-question {
        padding: 20px 0;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
    }

    .faq-cta-link {
        min-width: 0;
        width: 100%;
        max-width: 100%;
        padding: 20px 25px;
        font-size: 16px;
        border-radius: 15px;
        flex-direction: row;
        gap: 15px;
    }

    .faq-cta-link span {
        text-align: left;
        padding-right: 0;
        flex: 1;
    }

    .faq-arrow {
        font-size: 14px;
        margin: 0;
        padding: 0;
        border-radius: 0;
        background-color: transparent;
        min-width: auto;
        width: 16px;
    }
}

/* Newsletter Section */
.newsletter-section {
    background-color: #ffffff;
    padding: 80px 0;
}

.newsletter-banner {
    background: linear-gradient(165deg, #FFE5D2 0%, #E2A499 100%);
    background-image: url('/images/home/Group 8662@2x.jpg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
    border-radius: 20px;
    padding: 100px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.newsletter-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    font-family: 'Helvetica', sans-serif;
    text-align: center;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 30px;
    font-family: 'Helvetica', sans-serif;
    text-align: center;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-signup .input-group {
    display: flex;
    gap: 0;
    align-items: stretch;
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.newsletter-signup .form-control {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 0;
    font-size: 1rem;
    font-family: 'Helvetica', sans-serif;
    background-color: transparent;
    color: #4a5568;
    width: 100%;
    box-sizing: border-box;
}

.newsletter-signup .form-control::placeholder {
    color: #9ca3af;
    font-family: 'Helvetica', sans-serif;
}

.newsletter-signup .form-control:focus {
    outline: none;
    box-shadow: none;
    background-color: transparent;
}

.btn-subscribe {
    background-color: #ce4f49;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px !important;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Helvetica', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    margin: 7px;
}

.btn-subscribe:hover {
    background-color: #b03a35;
    color: white;
}

/* Responsive Design for Newsletter Section */
@media (max-width: 991.98px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-banner {
        padding: 40px 30px;
        background: linear-gradient(165deg, #FFE5D2 0%, #E2A499 100%) !important;
    }

    .newsletter-content h2 {
        font-size: 2rem;
    }

    .newsletter-content p {
        font-size: 1rem;
    }

    .newsletter-signup .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .btn-subscribe {
        width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 767.98px) {
    .newsletter-section {
        padding: 40px 0;
    }

    .newsletter-banner {
        padding: 30px 20px;
        background-image: none;
        background: linear-gradient(165deg, #FFE5D2 0%, #E2A499 100%) !important;
    }

    .newsletter-content h2 {
        font-size: 1.75rem;
    }

    .newsletter-content p {
        font-size: 0.95rem;
    }

    .newsletter-signup .input-group {
        flex-direction: column;
        gap: 0px;
        background-color: transparent;
        border: none;
        box-shadow: none;
    }

    .newsletter-signup .form-control {
        background-color: white;
        border: 1px solid #e5e7eb;
        border-radius: 0px;
        padding: 15px 20px;
    }

    .btn-subscribe {
        width: 100%;
        padding: 15px 20px;
        border-radius: 0px !important;
        margin: 0;
    }
}