html { scroll-behavior: smooth; } /* CTA Button */ .cta-button { background: linear-gradient(45deg, #FFD700, #FFC107); font-size: 18px; font-weight: bold; padding: 12px 24px; border: none; border-radius: 8px; cursor: pointer; transition: 0.3s ease; box-shadow: 0px 4px 10px rgba(255, 215, 0, 0.4); text-transform: uppercase; text-decoration: none; display: inline-block; margin: 20px 0 30px; } .cta-button:hover { background: linear-gradient(45deg, #FFC107, #FFA000); box-shadow: 0px 6px 15px rgba(255, 215, 0, 0.6); } /* Page Header */ .page-header img { margin-top: 0; } .page-header .sub-heading p { line-height: 1.9; margin-bottom: 1.5rem; } .page-header .cta-button { margin: 0 0 10px; } /* Layout */ .fixed-container { display: flex; max-width: 1100px; margin: 40px auto; } .fixed-container section { margin-bottom: 50px; } /* Sidebar (Submenu) */ .fixed-container .sidebar { flex: none; width: 240px; position: sticky; top: 10px; align-self: start; } .fixed-container .sidebar ul { list-style: none; padding-inline-start: 10px; } .fixed-container .sidebar li + li { margin-top: 5px; } .fixed-container .sidebar a { display: block; color: #8f8f8f; font-weight: 600; font-size: 14px; padding: 4px 0; text-decoration: none; } .fixed-container .sidebar a:hover { color: #333; } .fixed-container .sidebar a.active { color: #663399; } .fixed-container .sidebar p.title { font-weight: bold; color: #333; font-size: 16px; padding: 4px 0 0 10px; } /* Mobile Dropdown Menu */ .mobile-menu { display: none; width: 100%; max-width: 300px; margin: 20px auto; } .mobile-menu select { width: 100%; padding: 8px; font-size: 20px; } /* Content Sections */ .fixed-container .content { width: 98%; padding: 0 1%; position: inherit; margin-left: 40px; border-left: 1px solid #e5e7eb; } .fixed-container .intro-content { flex: none; display: flex; gap: 20px; align-items: stretch; } .fixed-container .intro-content section { margin-bottom: 40px; } /* Intro Block */ /* (Removed earlier duplicate that was fully overridden) */ .fixed-container .intro { background: #fff; border-radius: 10px; padding: 20px; } .fixed-container .intro-text { flex: 2; } .fixed-container .intro-text h2 { font-size: 24px; margin-bottom: 12px; text-align: left; } .fixed-container .intro-text h2 span.small { font-size: 16px; margin-bottom: 0; display: block; text-transform: uppercase; } .fixed-container .intro-text p { font-size: 16px; text-align: left; } .fixed-container .intro-content img { flex: 1; max-width: 200px; width: 100%; height: auto; object-fit: cover; border-radius: 4px; } /* Main Content */ .fixed-container .main-content { margin-bottom: 30px; padding: 10px; } /* Responsive (merged) */ @media (max-width: 768px) { .fixed-container { flex-direction: column; max-width: 100%; padding: 0 20px; } .fixed-container .sidebar { display: none; } .mobile-menu { display: block; } .fixed-container .content { width: auto; margin-left: 0; border-left: 0; } .fixed-container .intro-content { /* Keep consistent behaviour across your breakpoints */ flex-direction: column-reverse; } .fixed-container .intro-text h2 { font-size: 20px; } .fixed-container .intro-content img { /* Combine the two blocks’ intent */ width: 100%; height: auto; margin: 12px auto 0; } .fixed-container .intro-text p { width: 100%; text-align: center; } .fixed-container .intro-text h2 { font-size: 18px; text-align: center; } } /* Author Info */ .author-info { align-items: center; width: 100%; } .author-info img { border-radius: 50%; width: 30px; height: 30px; margin-top: 0; } .author-info p { font-size: 16px; color: #444; display: inline-flex; position: relative; top: 50%; transform: translateY(-50%); } .author-info a { color: #0073e6; text-decoration: none; font-weight: bold; } .author-info a:hover { text-decoration: underline; } @media (max-width: 600px) { .author-info { flex-direction: column; text-align: center; } } /* Q&A */ .question { width: 100%; margin-bottom: 30px; } .question h4 { font-size: 20px; margin: 20px 0 8px; } .question p { font-size: 15px; margin: 0 0 16px; line-height: 1.6; } .question .answer-box { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; padding: 12px; border: 1px solid #E7E7E7; border-radius: 10px; background-color: #F4F4F4; } .question .answer-info { font-size: 14px; } .question .answer-info .name { font-weight: 600; } .question .answer-info .date { margin-left: 6px; } .question .btn-question { display: flex; align-items: center; gap: 6px; font-size: 14px; font-weight: 500; background: #62bde9; border: 1px solid #0078b4; border-radius: 6px; padding: 6px 16px; text-decoration: none; transition: background 0.2s, color 0.2s; } .question .btn-question:hover { background: #0078b4; color: #fff; } /* Cards Grid */ .card { background-color: #fff; border-radius: 5px; display: flex; flex-direction: column; overflow: hidden; margin: 30px 0 50px; } .card-inner { display: flex; padding: 15px; } .card-inner img { width: 120px; object-fit: contain; border-radius: 5px; margin-right: 15px; } .card-body { flex: 1; display: flex; flex-direction: column; } .card-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; } .card-body h3 { font-size: 1.2em; color: #343a40; margin: 0; } .rating { color: #ffc107; font-size: 0.95em; } .locations { font-size: 0.9em; font-weight: bold; color: #6c757d; margin-bottom: 10px; } .card-footer { display: flex; justify-content: flex-end; padding: 12px; border: 1px solid #E7E7E7; border-radius: 10px; background-color: #F4F4F4; } .button-group { display: flex; gap: 20px; } .button-group a, .button-group input { font-size: 0.9em; border: none; border-radius: 5px; cursor: pointer; color: #fff; text-decoration: none; font-weight: 600; } .button-group input { background-color: #FFC107; color: #464646; padding: 8px 12px; margin-bottom: 0; } .button-group input:hover { background-color: #FFA000; } .button-group a { background-color: #0056b3; height: 20px; padding: 8px 12px; } /* (Removed .button-group a:hover which duplicated the base colour) */ /* Cards Responsive */ @media (max-width: 768px) { .cards-grid { } .card-inner { flex-direction: column; align-items: center; } .card-inner img { width: 100%; height: auto; margin-bottom: 15px; border-radius: 5px 5px 0 0; } .card-footer { flex-direction: column; align-items: flex-start; gap: 10px; } .card-header-row { display: block; justify-content: none; } .card-body h3, .rating { width: 100%; display: block; } .card-footer { align-items: center; } .button-group { display: block; align-items: stretch; text-align: center; /* fixed typo */ } .button-group a, .button-group input { display: block; margin: 10px auto; } } /* Reviews */ .review .rating-overview { display: flex; flex-direction: column; align-items: center; justify-content: center; } @media (min-width: 640px) { .review .rating-overview { gap: 2rem; margin-bottom: 2rem; } } @media (min-width: 768px) { .review .rating-overview { flex-direction: row; } } .review .overall-rating { text-align: center; margin-top: 20px; } .review .rating-display { display: flex; align-items: center; gap: 1rem; justify-content: center; } .review .rating-number { font-size: 2.5rem; font-weight: 700; color: #111827; } @media (min-width: 640px) { .review .rating-number { font-size: 3rem; } } .review .rating-right { display: flex; flex-direction: column; align-items: flex-start; } .review .stars { display: flex; margin-bottom: 0.25rem; } .review .star-filled { color: #fbbf24; font-size: 1.5rem; } .review .star-empty { color: #d1d5db; font-size: 1.5rem; } .review .rating-count { color: #6b7280; } .review .reviews-container { display: flex; flex-direction: column; gap: .5rem; } .review .review-card { background: transparent; padding: 1rem; border-bottom: 1px solid #e5e7eb; } .review .review-content { display: flex; align-items: flex-start; gap: 0.75rem; } @media (min-width: 640px) { .review .review-content { gap: 1rem; } } .review .avatar { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: none; align-items: center; justify-content: center; color: white; font-weight: 600; flex-shrink: 0; font-size: 0.875rem; background: linear-gradient(135deg, #663399 0%, #8855bb 100%); } @media (min-width: 640px) { .review .avatar { width: 3rem; height: 3rem; font-size: 1rem; display: flex; } } .review .review-details { flex: 1; } .review .review-header-info { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 0.5rem; } @media (min-width: 640px) { .review .review-header-info { flex-direction: row; align-items: center; justify-content: space-between; gap: 0; } } .review .reviewer-meta { font-size: 0.875rem; color: #6b7280; } .review .review-stars { display: flex; } .review .review-text { color: #374151; line-height: 1.6; margin-bottom: 1rem; } .review .review-actions { display: flex; align-items: center; gap: 1rem; font-size: 0.875rem; color: #6b7280; } /* Video */ .video-wrapper { position: relative; padding-bottom: 56.25%; /* 16:9 */ padding-top: 25px; } .video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; } /* Treatment Link */ .treatlink { display: inline-block; width: 100%; padding: 30px 0; border-bottom: 1px solid #e5e7eb; } .treatlink .image { width: 100px; height: auto; display: inline-block; } .treatlink .image img { border-radius: 5px; } .treatlink .content { display: inline-block; width: calc(99% - 140px); vertical-align: top; margin-left: 30px; border-left: none; } .treatlink .content h3 { font-size: 20px; margin-bottom: 0; } .treatlink .content h3 a { text-decoration: none; color: #ab46bc; font-weight: 500; vertical-align: top; } .treatlink .content h3 a:hover { color: #333332; } .treatlink .content p { font-size: 14px; color: #6b6a6a; margin: 0; vertical-align: top; } @media (max-width: 425px) { .treatlink .content { display: block; width: 100%; vertical-align: top; margin-left: 0; } .treatlink .image { display: block; margin-left: auto; margin-right: auto; } .treatlink .image img { width: 100%; height: auto; } .treatlink .title { display: block; width: 100%; margin-top: 10px; font-size: 24px; text-align: center; } .treatlink .content h3 a { margin: 0; } .treatlink .content p { margin: 10px 0 0 0; } } #preferred-partner .intro { background-color: #663399; color: #fff; } #preferred-partner .image { flex: 1; text-align: center; } #preferred-partner img { flex:none; max-width: 300px; } #preferred-partner a.partner-link { display: block; margin-top: 20px; text-align: center; background-color: #f5a618; color: #fff; font-weight: bold; font-size: 18px; padding: 12px 24px; border: none; border-radius: 8px; text-decoration: none; } #preferred-partner a:hover.partner-link { background-color: #ec9000; } /* FAQ */ .faq-item { background: #ffffff; border: 1px solid #e5e7eb; /* Light purple border */ border-radius: 10px; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); margin: 20px 0; overflow: hidden; transition: border-color .25s, box-shadow .25s, background .25s; } .faq-item[open] { border-color: #8a4cc2; /* Deeper purple when open */ box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); } .faq-summary { cursor: pointer; list-style: none; padding: 16px 18px; font-weight: 600; display: flex; align-items: center; gap: 10px; outline: none; } .faq-summary::-webkit-details-marker { display: none; } .faq-summary:focus-visible { outline: 3px solid rgba(138, 76, 194, 0.4); outline-offset: 2px; border-radius: 6px; } .faq-chevron { display: inline-grid; place-items: center; transition: transform .2s ease-in-out, color .2s; color: #333333; font-size: 14px; } .faq-item[open] .faq-chevron { transform: rotate(90deg); color: #8a4cc2; /* Purple when open */ } .faq-answer { padding: 0 18px 16px 32px; color: #555555; }