﻿/* Styles when the background is dark blue */

.refund-policy-section {
    background-color: var(--stfm-primary);
    color: white;
    padding: 38px 0;
}



.policy-subsection:last-child {
    margin-bottom: 0;
}

.policy-subtitle {
    color: white;
    font-weight: 600;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
}

    .policy-subtitle i {
        margin-right: 0.75rem;
        font-size: 1.2rem;
    }

.policy-text {
    line-height: 1.7;
    color: #e2e8f0;
}

.policy-subtitle-icon {
    color: var(--stfm-secondary);
}

.important-note {
    background-color: rgba(255, 140, 66, 0.1);
    border-left: 4px solid #ff8c42;
    padding: .75rem 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

    .important-note .note-text {
        color: white;
        font-weight: 500;
        margin: 0;
    }


/* Styles when the background is white */

.refund-policy-section-light-background {
    background-color: white;
    color: #333333;
    padding: 38px 0;
}

.policy-subtitle-light-background {
    color: var(--stfm-primary);
    font-weight: 600;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
}

    .policy-subtitle-light-background i {
        margin-right: 0.75rem;
        font-size: 1.2rem;
    }

.policy-text-light-background {
    line-height: 1.7;
    color: #666666;
}

.policy-subtitle-icon-light-background {
    color: var(--stfm-secondary);
}

.policy-subsection .policy-text:last-child {
    margin-bottom: 0;
}

.important-note-light-background {
    background-color: #f8f9fa;
    border-left: 4px solid #dee2e6;
    padding: .75rem 1rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
    border: 1px solid #e9ecef;
}

    .important-note-light-background .note-text {
        color: #666666;
        font-weight: 400;
        margin: 0;
    }

        .important-note-light-background .note-text i {
            color: var(--stfm-secondary);
        }


.section-header-light-background {
    margin-bottom: 2rem;
    padding: 1rem 1.5rem;
    border-left: 4px solid #ff8c42;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    background: linear-gradient(to right, rgba(255, 140, 66, 0.02) 0%, transparent 40%);
}

.section-title-light-background {
    padding-left: 0;
    color: #333333;
}

    .section-title-light-background::before {
        display: none;
    }


/* Dark background version (default) */
.stfm-styled-list {
    list-style: none;
    padding: 0 1.25rem;
    margin: 1rem 0;
}

    .stfm-styled-list li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.65rem;
        line-height: 1.6;
        color: #e2e8f0; /* Light text for dark background */
    }

        .stfm-styled-list li:last-child {
            margin-bottom: 0;
        }

        .stfm-styled-list li::before {
            content: '\f00c'; /* FontAwesome checkmark */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.1em;
            color: var(--stfm-secondary); /* Orange checkmarks work on dark bg */
            font-size: 0.9rem;
        }

/* Light background version */
.stfm-styled-list-light-background {
    list-style: none;
    padding: 0 1.25rem;
    margin: 1rem 0;
}

    .stfm-styled-list-light-background li {
        position: relative;
        padding-left: 2rem;
        margin-bottom: 0.65rem;
        line-height: 1.6;
        color: var(--stfm-text); /* Dark text for light background */
    }

        .stfm-styled-list-light-background li:last-child {
            margin-bottom: 0;
        }

        .stfm-styled-list-light-background li::before {
            content: '\f00c'; /* FontAwesome checkmark */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 0.1em;
            color: var(--stfm-secondary); /* Orange checkmarks work on light bg too */
            font-size: 0.9rem;
        }

.stylized-link {
    text-decoration: none;
    font-weight: 600;
}

    .stylized-link:hover,
    .stylized-link:focus {
        text-decoration: none;
    }


.hero-cta-buttons .btn {
    margin-bottom: 0.5rem;
}

@media (min-width: 576px) {
    .hero-cta-buttons .btn {
        margin-bottom: 0;
    }
}


.policy-subsection .stfm-outline-button {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .policy-subsection .stfm-outline-button:hover {
        background-color: white;
        border-color: white;
        color: var(--stfm-primary) !important;
        transform: translateY(-2px);
        text-decoration: none;
    }

.policy-subsection .stfm-outline-button-light {
    background-color: transparent;
    border: 2px solid var(--stfm-primary);
    color: var(--stfm-primary) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .policy-subsection .stfm-outline-button-light:hover {
        background-color: var(--stfm-primary);
        color: white !important;
        transform: translateY(-2px);
        text-decoration: none;
    }

.video-container {
    position: relative;
    width: 100%;
}

.video-overlay-wrapper {
    position: relative;
    cursor: pointer;
    width: 100%;
}

    .video-overlay-wrapper:hover .video-overlay-image {
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

    .video-overlay-wrapper:hover .play-button-overlay {
        transform: translate(-50%, -50%) scale(1.1);
    }

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.play-icon {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

    .play-icon i {
        color: white;
        font-size: 2rem;
        margin-left: 4px; /* Slight offset to center the triangle visually */
    }

.play-text {
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6);
    padding: 8px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

/* Video Section Styling */
.video-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
}

.video-section-title {
    color: var(--stfm-secondary);
    font-size: 0.95rem;
    font-weight: normal;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

    .video-section-title i {
        color: var(--stfm-secondary);
    }

.video-section-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.video-section-description-light-background {
    color: #666666;
}

/* Video Alignment Classes */
.video-embed-left {
    text-align: left;
}

.video-embed-center {
    text-align: center;
}

    .video-embed-center .row {
        justify-content: center;
    }

    .video-embed-center .col-12,
    .video-embed-center .col-md-8,
    .video-embed-center .col-lg-6,
    .video-embed-center .col-xl-5 {
        display: flex;
        justify-content: center;
    }

@media (max-width: 768px) {
    .play-icon {
        width: 60px;
        height: 60px;
    }

        .play-icon i {
            font-size: 1.5rem;
        }

    .play-text {
        font-size: 0.95rem;
        padding: 6px 12px;
    }

    .play-button-overlay {
        gap: 8px;
    }
}
