/* ==========================================================================
   COPPA Page Styles
   Family Safety & COPPA Compliance Page
   ========================================================================== */

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

body {
    font-family: Merriweather, serif;
    line-height: 1.6;
    color: #EBEBEB;
    background-color: #323031;
    overflow-x: hidden;
}

/* COPPA page uses the standard navigation from base template */

/* Hero + COPPA Combined Section */
.hero-coppa-combined {
    background: linear-gradient(135deg, #7B44C1 0%, #1E96FC 100%);
    padding: 60px 0;
}

.dual-panel-container {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

/* Island Panels - Shared styling for both left and right */
.panel-island {
    flex: 1 1 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #EBEBEB;
    text-shadow: 1px 1px 3px #323031;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.panel-island::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.1) 0%, transparent 50%, rgba(154, 213, 202, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.panel-island:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 213, 202, 0.3);
    border-color: rgba(154, 213, 202, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.panel-island:hover::before {
    opacity: 1;
}

.panel-island > * {
    position: relative;
    z-index: 1;
}

.panel-island h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.panel-island p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.6;
}

.panel-island .trust-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
}

.shield-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    filter: invert(1);
}

.panel-island h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-align: center;
}

.panel-island .subtitle {
    font-size: 1.2rem;
    margin-bottom: 25px;
    opacity: 0.9;
    text-align: center;
}

/* Compact COPPA Points */
.coppa-points-compact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.coppa-point-compact {
    display: flex;
    align-items: center;
    gap: 12px;
}

.coppa-point-compact .check-icon {
    width: 24px;
    height: 24px;
    fill: #9AD5CA;
    flex-shrink: 0;
}

.coppa-point-compact h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

/* Flip Card Container */
.flip-card {
    perspective: 1000px;
    position: relative;
    /* Override panel-island padding - flip card faces will have their own padding */
    padding: 0 !important;
    /* Override panel-island overflow to allow flip visibility */
    overflow: visible !important;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back Faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    box-sizing: border-box;
}

.flip-card-front {
    color: #EBEBEB;
    text-shadow: 1px 1px 3px #323031;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 30px;
}

.flip-card-back {
    transform: rotateY(180deg);
    color: #EBEBEB;
    text-shadow: 1px 1px 3px #323031;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Flip Trigger Button (Front) */
.flip-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #EBEBEB;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
    font-family: Merriweather, serif;
}

.flip-trigger:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.flip-trigger .arrow-right {
    width: 20px;
    height: 20px;
    fill: #EBEBEB;
}

/* Back Button */
.flip-trigger-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #EBEBEB;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Merriweather, serif;
    flex-shrink: 0;
    width: 100%;
}

.flip-trigger-back:hover {
    background: rgba(255, 255, 255, 0.3);
}

.flip-trigger-back .arrow-left {
    width: 18px;
    height: 18px;
    fill: #EBEBEB;
}

/* Back Side Content */
.coppa-detail-content {
    flex: 1;
    overflow-y: auto;
    padding-right: 10px;
    margin-bottom: 15px;
}

.coppa-intro {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.coppa-point-detailed {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.coppa-point-detailed .check-icon {
    width: 24px;
    height: 24px;
    fill: #9AD5CA;
    flex-shrink: 0;
    margin-top: 2px;
}

.coppa-point-detailed h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.coppa-point-detailed p {
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Scrollbar Styling for Back Side Content */
.coppa-detail-content::-webkit-scrollbar {
    width: 8px;
}

.coppa-detail-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.coppa-detail-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.coppa-detail-content::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.section-header h2 {
    font-size: 2.8rem;
    color: #EBEBEB;
    margin-bottom: 20px;
    font-weight: 700;
}

.section-header p {
    font-size: 1.3rem;
    color: rgba(235, 235, 235, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

/* Cards - Glass Island Style (matching homepage personas) */
.card-custom {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.1) 0%, transparent 50%, rgba(123, 68, 193, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-custom:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(123, 68, 193, 0.2);
    border-color: rgba(123, 68, 193, 0.3);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.card-custom:hover::before {
    opacity: 1;
}

.card-icon {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%) drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
    opacity: 1;
    transition: all 0.3s ease;
}

.card-custom:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
    filter: brightness(0) saturate(100%) invert(83%) sepia(50%) saturate(800%) hue-rotate(100deg) brightness(110%) contrast(90%) drop-shadow(0 0 20px rgba(154, 213, 202, 0.8));
}

/* Special hover effects for different card types */
.card-custom:nth-child(1):hover::before {
    background: linear-gradient(135deg, rgba(30, 150, 252, 0.1) 0%, transparent 50%, rgba(30, 150, 252, 0.05) 100%);
}

.card-custom:nth-child(1):hover .card-icon {
    filter: brightness(0) saturate(100%) invert(51%) sepia(95%) saturate(1449%) hue-rotate(172deg) brightness(110%) contrast(95%) drop-shadow(0 0 25px rgba(30, 150, 252, 1));
}

.card-custom:nth-child(2):hover::before {
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.1) 0%, transparent 50%, rgba(154, 213, 202, 0.05) 100%);
}

.card-custom:nth-child(2):hover .card-icon {
    filter: brightness(0) saturate(100%) invert(83%) sepia(50%) saturate(800%) hue-rotate(100deg) brightness(110%) contrast(90%) drop-shadow(0 0 25px rgba(154, 213, 202, 1));
}

.card-custom:nth-child(3):hover::before {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.1) 0%, transparent 50%, rgba(123, 68, 193, 0.05) 100%);
}

.card-custom:nth-child(3):hover .card-icon {
    filter: brightness(0) saturate(100%) invert(31%) sepia(95%) saturate(2000%) hue-rotate(248deg) brightness(110%) contrast(95%) drop-shadow(0 0 25px rgba(123, 68, 193, 1));
}


.card-custom h3 {
    font-size: 1.5rem;
    margin: 1rem 0;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.card-custom p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
}

/* Split Card Layout */
.card-split {
    display: flex;
    align-items: stretch;
    text-align: left;
    padding: 2rem;
}

.card-split-left {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-right: 2rem;
}

.card-split-left .card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.card-split-left h3 {
    margin: 0;
    text-align: center;
    font-size: 1.5rem;
}

.card-split-divider {
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(154, 213, 202, 0.6) 20%,
        rgba(154, 213, 202, 0.8) 50%,
        rgba(154, 213, 202, 0.6) 80%,
        transparent
    );
    margin: 0 2rem;
    flex-shrink: 0;
}

.card-split-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding-left: 2rem;
}

.card-split-right p {
    margin: 0;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.7;
}

.card-split-right ul {
    margin: 0;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.card-split-right ul li {
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    line-height: 1.6;
    font-size: 1.2rem;
}

.card-split-right ul li:last-child {
    margin-bottom: 0;
}


/* Process Steps */
.approval-process {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(154, 213, 202, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.approval-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.1) 0%, transparent 50%, rgba(154, 213, 202, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.approval-process:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 213, 202, 0.3);
    border-color: rgba(154, 213, 202, 0.4);
    background: rgba(255, 255, 255, 0.1);
}

.approval-process:hover::before {
    opacity: 1;
}

.approval-process > * {
    position: relative;
    z-index: 1;
}

/* Make row use flexbox for equal-height columns */
.approval-process .row {
    display: flex;
    flex-wrap: wrap;
}

/* Make columns stretch to equal height */
.approval-process .row > [class*='col-'] {
    display: flex;
}

.step {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(154, 213, 202, 0.2);
    text-align: center;
    margin-bottom: 40px;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 213, 202, 0.3);
    border-color: rgba(154, 213, 202, 0.4);
    background: rgba(255, 255, 255, 0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7B44C1, #1E96FC);
    color: #EBEBEB;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.4rem;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(123, 68, 193, 0.3);
}

.step h4 {
    margin-bottom: 12px;
    color: #EBEBEB;
    font-weight: 600;
    font-size: 1.3rem;
}

.step p {
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.6;
    font-size: 1.2rem;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #7B44C1;
    color: #EBEBEB;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    border: 1px solid #EBEBEB;
    box-shadow: 0px 3px 15px rgba(123, 68, 193, 0.3);
    text-shadow: 0px 1px 0px #323031;
    margin-top: 30px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0px 5px 20px rgba(30, 150, 252, 0.4);
    background: linear-gradient(to bottom, #1792F7 5%, #6A3DB3 100%);
    color: #EBEBEB;
    text-decoration: none;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, rgba(123, 68, 193, 0.1) 0%, transparent 50%, rgba(30, 150, 252, 0.1) 100%);
    padding: 80px 0;
}

.testimonial {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    border: 1px solid rgba(154, 213, 202, 0.2);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.3rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: #EBEBEB;
    font-size: 1.2rem;
}

/* FAQ */
.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(154, 213, 202, 0.2);
}

.faq-question {
    padding: 25px 30px;
    background: rgba(123, 68, 193, 0.1);
    cursor: pointer;
    font-weight: 600;
    color: #EBEBEB;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
    font-family: Merriweather, serif;
}

.faq-question:hover {
    background: rgba(123, 68, 193, 0.2);
}

.faq-answer {
    padding: 0 30px 25px;
    color: rgba(235, 235, 235, 0.8);
    line-height: 1.7;
    font-size: 1.2rem;
}

/* Color Alternation System */
.section-color-purple {
    background: linear-gradient(135deg, #7B44C1 0%, #1E96FC 100%);
    padding: 80px 0;
}

.section-color-grey {
    background-color: #323031;
    padding: 80px 0;
}

/* Fix icon visibility on grey backgrounds */
.section-color-grey .card-icon {
    filter: brightness(0) saturate(100%) invert(83%) sepia(50%) saturate(800%) hue-rotate(100deg) brightness(110%) contrast(90%) drop-shadow(3px 3px 6px rgba(0, 0, 0, 0.8));
}

.section-color-grey .card-custom:hover .card-icon {
    filter: brightness(0) saturate(100%) invert(83%) sepia(50%) saturate(800%) hue-rotate(100deg) brightness(110%) contrast(90%) drop-shadow(0 0 20px rgba(154, 213, 202, 0.8));
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #7B44C1 0%, #1E96FC 100%);
    color: #EBEBEB;
    padding: 80px 0;
    text-shadow: 1px 1px 3px #323031;
}

.contact-split-container {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 50px 40px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-split-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.1) 0%, transparent 50%, rgba(154, 213, 202, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-split-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 213, 202, 0.3);
    border-color: rgba(154, 213, 202, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.contact-split-container:hover::before {
    opacity: 1;
}

.contact-left {
    flex: 1;
    padding-right: 40px;
    text-align: left;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    font-size: 2.2rem;
    color: #EBEBEB;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-left p {
    font-size: 1.3rem;
    color: rgba(235, 235, 235, 0.9);
    line-height: 1.6;
}

.contact-divider {
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(154, 213, 202, 0.6) 20%,
        rgba(154, 213, 202, 0.8) 50%,
        rgba(154, 213, 202, 0.6) 80%,
        transparent
    );
    box-shadow: 0 0 15px rgba(154, 213, 202, 0.8);
    margin: 0 40px;
    flex-shrink: 0;
    align-self: stretch;
}

.contact-right {
    flex: 1;
    padding-left: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.contact-right h4 {
    font-size: 1.5rem;
    color: #EBEBEB;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-right a {
    color: #EBEBEB;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
}

.contact-right a:hover {
    color: #9AD5CA;
    text-decoration: none;
}

/* COPPA page uses the standard footer from base template */

/* FAQ Section Collapsible Container */
.faq-section-toggle {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
    border-radius: 15px;
    padding: 30px 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    font-family: Merriweather, serif;
}

.faq-section-toggle:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(154, 213, 202, 0.5);
    box-shadow: 0 5px 20px rgba(154, 213, 202, 0.2);
}

.faq-section-toggle:hover .faq-section-header h2 {
    color: #9AD5CA;
    transform: translateY(-8px) scale(1.05);
    text-shadow: 0 0 20px rgba(154, 213, 202, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.faq-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.faq-section-header h2 {
    font-size: 2.8rem;
    color: #fff;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-align: left;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.faq-section-header p {
    font-size: 1.3rem;
    color: rgba(235, 235, 235, 0.8);
    margin: 0;
    text-align: left;
}

.faq-section-header .chevron-icon {
    width: 40px;
    height: 40px;
    fill: #9AD5CA;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

/* Rotate chevron when expanded */
.faq-section-toggle.expanded .chevron-icon {
    transform: rotate(180deg);
}

/* Keep heading lifted and glowing when expanded, with purple border glow */
.faq-section-toggle.expanded {
    border-color: rgba(123, 68, 193, 0.3);
    box-shadow: 0 10px 30px rgba(123, 68, 193, 0.2);
}

.faq-section-toggle.expanded .faq-section-header h2 {
    color: #9AD5CA;
    transform: translateY(-8px) scale(1.05);
    text-shadow: 0 0 20px rgba(154, 213, 202, 0.8), 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* FAQ Section Content (collapsible) */
.faq-section-content {
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    max-height: 0;
    opacity: 0;
}

.faq-section-content.expanded {
    max-height: 2000px;
    opacity: 1;
}

/* Existing .faq container gets top margin */
.faq-section-content .faq {
    margin-top: 0;
}

/* Trust & Transparency Section: Merged Testimonials + Certifications */
.trust-transparency-container {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.trust-island {
    flex: 1 1 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-island::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.1) 0%, transparent 50%, rgba(154, 213, 202, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.trust-island:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(154, 213, 202, 0.3);
    border-color: rgba(154, 213, 202, 0.4);
    background: rgba(255, 255, 255, 0.2);
}

.trust-island:hover::before {
    opacity: 1;
}

.trust-island > * {
    position: relative;
    z-index: 1;
}

.island-heading {
    font-size: 2rem;
    color: #EBEBEB;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Testimonials Island */
.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(154, 213, 202, 0.2);
    margin-bottom: 20px;
}

.testimonial-card:last-child {
    margin-bottom: 0;
}

.testimonial-card .testimonial-text {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.7;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 15px;
}

.testimonial-card .testimonial-author {
    font-weight: 600;
    font-size: 1.1rem;
    color: #EBEBEB;
    text-align: right;
}

/* Glowing Teal Divider */
.trust-divider {
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(154, 213, 202, 0.6) 20%,
        rgba(154, 213, 202, 0.8) 50%,
        rgba(154, 213, 202, 0.6) 80%,
        transparent
    );
    box-shadow: 0 0 15px rgba(154, 213, 202, 0.8);
    flex-shrink: 0;
    align-self: stretch;
}

/* Certifications Island */
.certification-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 25px 20px;
    border-radius: 12px;
    border: 1px solid rgba(154, 213, 202, 0.2);
    margin-bottom: 20px;
}

.certification-card:last-child {
    margin-bottom: 0;
}

.cert-subheading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cert-subheading.teal {
    color: #9AD5CA;
}

.cert-subheading.blue {
    color: #5DB4FF;
}

.cert-list {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin: 0;
}

.cert-list li {
    color: rgba(235, 235, 235, 0.9);
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cert-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dual-panel-container {
        flex-direction: column;
        gap: 20px;
    }

    .panel-island h1 {
        font-size: 2rem;
    }

    .panel-island h2 {
        font-size: 1.8rem;
    }

    /* Trust & Transparency Section - Stack vertically on tablets */
    .trust-transparency-container {
        flex-direction: column;
        gap: 20px;
    }

    .trust-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.2rem;
    }

    .approval-process {
        padding: 40px 25px;
    }

    .step {
        margin-bottom: 50px;
    }

    .contact-split-container {
        flex-direction: column;
        padding: 40px 25px;
    }

    .contact-left,
    .contact-right {
        padding: 20px 0;
        text-align: center;
    }

    .contact-divider {
        display: none;
    }

    .contact-left h2 {
        font-size: 1.8rem;
    }

    .panel-island h1 {
        font-size: 1.8rem;
    }

    .panel-island p {
        font-size: 1rem;
    }

    .panel-island h2 {
        font-size: 1.6rem;
    }

    .flip-card {
        min-height: 500px;
    }

    .flip-card-inner {
        min-height: 500px;
    }

    .coppa-detail-content {
        max-height: 300px;
    }

    .card-split {
        flex-direction: column;
        text-align: center;
    }

    .card-split-left {
        flex: none;
        width: 100%;
        padding-right: 0;
        margin-bottom: 1.5rem;
    }

    .card-split-divider {
        display: none;
    }

    .card-split-right {
        padding-left: 0;
    }

    .card-split-right p {
        text-align: center;
    }

    /* Uniform bullet alignment for lists in mobile */
    .card-split-right ul {
        padding-left: 1.2rem;
        text-align: left;
        list-style-position: outside;
    }

    .card-split-right ul li {
        padding-left: 0;
        margin-left: 0;
    }
}
