/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #f5f5f5;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}
.row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: wrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
}


.col {
    flex: 1 0 0%;
    font-size: 16px;
    font-weight: 600;
    color: #c74a1a;
    line-height: 18px;
    text-align: center;
    padding: 0px 0px 0px 0px;
}
.section-point{
    padding: 25px 0px 25px 0px;
}
.form-group textarea{
    padding: 10px 10px 10px 10px;
    border: 1px solid #2c5530;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}
.form-group textarea::focus{
    outline: none;
    border: 1px solid #2c5530;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 400;
}
/* Mobile Container */
.mobile-container {
    max-width: 428px;
    margin: 0 auto;
    background: white;
   
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

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

/* Header */
.header {

    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Tagline Section */
.tagline-section {
    background: #243a2e;
    padding: 15px 20px;
    text-align: center;
    overflow: hidden;
}

.tagline-slider {
    position: relative;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tagline-slide {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.tagline-slide.active {
    opacity: 1;
    transform: translateY(0);
}

.tagline-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Hero Image */
.hero-image {
    width: 100%;
    overflow: hidden;
}

.hero-banner {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 100%;
    margin: 0 auto;
}

.nav-brand h2 {
    color: #2c5530;
    font-size: 1.8rem;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2c5530;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: #ffffff;
    height: 100vh;
   
}

.hero-container {
    max-width: 100%;
    padding: 0 15px 0 15px;
    width: 100%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c5530;
}

.highlight {
    color: #d4a574;
}

.hero-description {
    font-size: 15px;
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}
.bord-rgh{
    border-right: 1px solid #2c5530;
}
.stat {
    text-align: center;
}

.stat-number {
    display: block;
  
    font-size: 16px;
    font-weight: 600;
    color: #2c5530;
    line-height: 18px;
    text-align: center;
    padding: 0px 0px 0px 0px;
}

.stat-text {
    font-size: 12px;
    font-weight: 400;
    color: #2c5530;
    text-align: center;
}

/* Hero Form */
.hero-form {
    background: #2c5530;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.consultation-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5530;
}

.btn-primary {
    background: #ffffff;
    color: #2c5530;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 85, 48, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.form-checkbox input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #ffffff;
}

/* Triggers Section */
.triggers {
    padding: 80px 0;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
}

.triggers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.trigger-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trigger-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.trigger-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.trigger-icon i {
    font-size: 2rem;
    color: white;
}

.trigger-item h3 {
    font-size: 15px;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.trigger-item p {
    color: #666;
    line-height: 1.6;
}

/* Program Section */
.program-section {
    padding: 60px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.program-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
}

.program-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #d4a574, #e6b87a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.program-icon i {
    font-size: 1.5rem;
    color: white;
}

.program-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    text-align: center;
    margin-bottom: 1rem;
}

.program-item p {
    color: #666;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: #2c5530;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #d4a574;
}

/* Conditions Section */
.conditions {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.condition-card {
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.condition-card:hover {
    transform: translateY(-5px);
}

.condition-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.condition-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Inclusions Section */
.inclusions {
    padding: 80px 0;
    background: #f8f9fa;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.inclusions-content {
    max-width: 800px;
    margin: 0 auto;
}

.inclusions-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 1.5rem;
    text-align: center;
}

.inclusions-text p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.edge-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.edge-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.edge-item i {
    font-size: 2rem;
    color: #2c5530;
    margin-top: 0.5rem;
    width: 100%;
}

.edge-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.edge-item p {
    color: #666;
    line-height: 1.6;
    text-align: left;
}

/* Experts Section */
.experts {
    padding: 80px 0;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.experts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expert-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.expert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.expert-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expert-image i {
    font-size: 2.5rem;
    color: white;
}

.expert-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 0.5rem;
}

.expert-experience {
    color: #d4a574;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expert-specialization {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Clinic Locations */
.clinics {
    padding: 80px 0;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

.clinic-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #2c5530;
}

.clinic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.clinic-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.clinic-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin: 0;
}

.clinic-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.clinic-icon i {
    color: white;
    font-size: 1.2rem;
}

.clinic-address {
    margin-bottom: 1.5rem;
}

.clinic-address p {
    color: #666;
    margin-bottom: 0.3rem;
    line-height: 1.5;
    font-size: 0.95rem;
}

.clinic-address p:last-child {
    font-weight: 600;
    color: #2c5530;
}

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

.clinic-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.clinic-phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 85, 48, 0.3);
    color: white;
}

.clinic-phone i {
    font-size: 1rem;
}

/* Success Stories */
.success-stories {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
}

.story-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c5530;
    margin-bottom: 1rem;
}

.story-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.story-details span {
    font-size: 0.9rem;
    color: #666;
}

.story-results {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

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

.result-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.result-score {
    font-size: 1.2rem;
    font-weight: 700;
    color: #dc3545;
}

.result-score.success {
    color: #28a745;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.faq-question:hover {
    color: #2c5530;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-right: 1rem;
}

.faq-question i {
    color: #2c5530;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5530, #3a6b3a);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-phone {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #2c5530;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #d4a574;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #d4a574;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #2c5530;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #d4a574;
}

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

/* Mobile-first styling for 428px container */
.mobile-container .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

.mobile-container .hero-title {
    font-size: 2.5rem;
}

.mobile-container .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-container .triggers-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
}

.mobile-container .program-grid {
    grid-template-columns: 1fr;
}

.mobile-container .conditions-grid {
    grid-template-columns: 1fr;
}

.mobile-container .edge-item {
    flex-direction: column;
    text-align: center;
}

.mobile-container .experts-grid {
    grid-template-columns: 1fr;
}

.mobile-container .stories-grid {
    grid-template-columns: 1fr;
}

.mobile-container .story-results {
    flex-direction: column;
    gap: 1rem;
}

.mobile-container .clinics-grid {
    grid-template-columns: 1fr;
}

.mobile-container .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
}

.mobile-container .social-links {
    justify-content: center;
}

.mobile-container .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
}

.mobile-container .nav-menu.active {
    left: 0;
}

.mobile-container .nav-toggle {
    display: flex;
}

.mobile-container .nav-brand h2 {
    font-size: 1.5rem;
}

.mobile-container .section-title {
    font-size: 1.5rem;
}

.mobile-container .hero-form {
    padding: 1.5rem;
}

.mobile-container .trigger-item,
.mobile-container .program-item,
.mobile-container .expert-card,
.mobile-container .story-card,
.mobile-container .clinic-card {
    padding: 10px;
}

.mobile-container .edge-item {
    padding: 1.5rem;
}

.mobile-container .logo {
    height: 40px;
    max-width: 150px;
}

.mobile-container .tagline-text {
    font-size: 1rem;
    padding: 0 10px;
}

.mobile-container .tagline-slider {
    height: 25px;
}
.row.d-flex.justify-content-center.align-content-center {
    display: flex;
    justify-content: center;
    align-items: center;
}
/* Scroll to Top Button */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    bottom: 0px;
    z-index: 996;
    background: #2c5530;
    color: #fff;
    width: 95%;
    height: 45px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    transition: all 0.4s;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}


.back-to-top i {
    font-size: 16px;
}





/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .triggers-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 2fr));
    }

    .program-grid {
        grid-template-columns: 1fr;
    }

    .conditions-grid {
        grid-template-columns: 1fr;
    }

    .edge-item {
        flex-direction: column;
        text-align: center;
    }

    .experts-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .story-results {
        flex-direction: column;
        gap: 1rem;
    }

    .clinics-grid {
        grid-template-columns: 1fr;
    }

    .clinic-card {
        padding: 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav {
        padding: 1rem;
    }

    .hero {
        padding: 15px 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 16px;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-form {
        padding: 1.5rem;
    }

    .hero-banner {
        height: auto;
    }

    .logo {
        height: 35px;
        max-width: 120px;
    }

    .tagline-text {
        font-size: 0.9rem;
        padding: 0 5px;
    }

    .tagline-slider {
        height: 22px;
    }

    .trigger-item,
    .program-item,
    .expert-card,
    .story-card {
        padding: 1.5rem;
    }

    .edge-item {
        padding: 1.5rem;
    }
}

@media (min-width: 1200px) and (max-width: 5120px) {
    .back-to-top {
        width: 26% !important;
    }
}