/* Base Styles */
:root {
    --navy: #003366;
    --navy-dark: #002244;
    --navy-light: #004488;
    --red: #e63946;
    --red-dark: #c1121f;
    --red-light: #ff4c5a;
    --blue-light: #e6f0fa;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --radius: 8px;
    --radius-lg: 12px;
}

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

.container {
    max-width: 1200px;
}

/* Header */
header {
    background-color: transparent;
}

header.scrolled {
    background-color: var(--navy);
    box-shadow: var(--shadow);
}

.logo {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--navy);
    color: var(--white);
    font-weight: bold;
    border-radius: var(--radius);
    font-size: 1.25rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.nav-link {
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--red);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-link {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Buttons */
.btn-primary {
    background-color: var(--red);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    padding: 11px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-block;
    transition: var(--transition);
    text-align: center;
    border: 2px solid var(--white);
    cursor: pointer;
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 51, 102, 0.8), rgba(0, 51, 102, 0.8)), url('https://images.pexels.com/photos/3297593/pexels-photo-3297593.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
    padding: 80px 0;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2.25rem;
    font-weight: 600;
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.book-cover {
    max-width: 250px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    transform: rotate(3deg);
}

.hero-book {
    margin-top: 3rem;
    position: relative;
}

.book-shadow {
    position: absolute;
    width: 80%;
    height: 20px;
    background: rgba(0, 0, 0, 0.2);
    bottom: -10px;
    left: 10%;
    border-radius: 50%;
    filter: blur(10px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--white);
    border-radius: 13px;
    position: relative;
    margin-bottom: 8px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--white);
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-arrow {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid var(--white);
    border-right: 2px solid var(--white);
    transform: rotate(45deg);
    margin: -3px 0;
    animation: arrow 2s infinite;
}

.scroll-arrow:nth-child(2) {
    animation-delay: 0.2s;
}

.scroll-arrow:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes arrow {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Section Styles */
.section-header {
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--navy);
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.section-divider {
    height: 3px;
    width: 80px;
    background-color: var(--red);
    margin: 0 auto 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
}

.bg-light-blue {
    background-color: var(--blue-light);
    background-image: url('https://images.pexels.com/photos/5797902/pexels-photo-5797902.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.bg-light-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 240, 250, 0.9);
}

.bg-light-blue > * {
    position: relative;
    z-index: 1;
}

.bg-navy {
    background-color: var(--navy);
}

/* Feature Cards */
.feature-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--navy);
}

/* Concept Box */
.concept-box {
    background-color: rgba(230, 240, 250, 0.6);
    border-left: 4px solid var(--red);
}

/* Stats Section */
.stat-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--gray);
}

/* Journey Slider */
.journey-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.journey-navigation {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.journey-prev,
.journey-next {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.journey-next {
    right: -40px;
}

.journey-prev:hover,
.journey-next:hover {
    background-color: var(--navy);
    color: var(--white);
}

.journey-track {
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

.journey-slide {
    min-width: 100%;
    transition: var(--transition);
    opacity: 0.3;
    transform: scale(0.9);
    display: none;
}

.journey-slide.active {
    opacity: 1;
    transform: scale(1);
    display: block;
}

.journey-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-left: 4px solid var(--red);
}

.journey-header {
    padding: 1.5rem;
    background-color: var(--navy);
    color: var(--white);
}

.journey-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.journey-header span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.journey-body {
    padding: 1.5rem;
}

.journey-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background-color: var(--gray-light);
}

.journey-footer span {
    font-weight: 600;
    color: var(--navy);
}

.journey-indicators {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.journey-indicators span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--gray);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.journey-indicators span.active {
    background-color: var(--red);
    transform: scale(1.2);
}

/* Accordion */
.accordion {
    margin-top: 1.5rem;
}

.accordion-item {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    background-color: var(--white);
}

.accordion-header {
    padding: 1.25rem;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.accordion-content {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active .accordion-content {
    padding: 1.25rem;
    max-height: 500px;
}

.accordion-item.active .accordion-header {
    background-color: var(--gray-light);
}

.accordion-item.active .accordion-icon i {
    transform: rotate(45deg);
}

.accordion-icon i {
    transition: var(--transition);
}

/* Testimonial Container */
.testimonial-container {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    position: relative;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-quote i {
    color: var(--white);
    font-size: 1.25rem;
}

.testimonial-container blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Educational Impact */
.educational-impact {
    margin-top: 2rem;
}

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

.impact-item {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.impact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.impact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.impact-text h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.impact-text p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* CTA Box */
.cta-box {
    background-color: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: var(--shadow-lg);
}

.cta-box h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonials Carousel */
.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials-track {
    position: relative;
    overflow: hidden;
    padding: 1rem 0;
}

.testimonial-slide {
    min-width: 100%;
    transition: var(--transition);
    display: none;
}

.testimonial-slide:first-child {
    display: block;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.testimonial-content i {
    color: var(--red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.testimonial-content p {
    font-style: italic;
}

.testimonial-footer {
    padding: 1.5rem;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-person h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

.testimonial-person p {
    font-size: 0.9rem;
    color: var(--gray);
}

.testimonial-arrows {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
    pointer-events: none;
}

.testimonial-prev,
.testimonial-next {
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background-color: var(--navy);
    color: var(--white);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonial-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots span.active {
    background-color: var(--white);
    transform: scale(1.2);
}

/* Vision Cards */
.vision-card {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.vision-icon {
    width: 60px;
    height: 60px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vision-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.vision-card h5 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

/* Order Steps */
.order-steps {
    margin-top: 1.5rem;
}

.order-step {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.order-step-number {
    width: 40px;
    height: 40px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

.order-step-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

/* Promo Box */
.promo-box {
    background-color: var(--red);
    color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.promo-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.promo-icon i {
    color: var(--red);
    font-size: 1.25rem;
}

.promo-content h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

/* Contact Info */
.contact-info {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-icon i {
    color: var(--white);
    font-size: 1.25rem;
}

.contact-details h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--navy);
}

/* FAQ */
.contact-faq {
    margin-top: 3rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 1.25rem;
    background-color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0;
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

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

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

.faq-icon i {
    transition: var(--transition);
}

/* Contact Form */
.contact-form {
    background-color: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
}

.form-submit {
    margin-top: 1rem;
    text-align: center;
}

/* Footer */
.footer-gradient {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    position: relative;
}

.footer-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.pexels.com/photos/3462616/pexels-photo-3462616.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2') center/cover;
    opacity: 0.1;
    z-index: 0;
}

.footer-gradient > * {
    position: relative;
    z-index: 1;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-nav a {
    color: var(--white);
    padding: 0.5rem 0;
    transition: var(--transition);
    position: relative;
}

.footer-nav a:hover {
    color: var(--red);
    transform: translateX(5px);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--red);
    transition: var(--transition);
    transform: translateX(-50%);
}

.footer-nav a:hover::after {
    width: 80%;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    z-index: 99;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--red);
    transform: translateY(-5px);
}

/* Author Section Styles */
.author-section {
    position: relative;
}

.author-image img {
    border: 4px solid var(--white);
    box-shadow: var(--shadow-lg);
}

/* Social Icons */
.social-icons a {
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Modal Styles */
#extract-modal {
    backdrop-filter: blur(5px);
}

#extract-modal .bg-white {
    max-height: 90vh;
    overflow-y: auto;
}

#extract-modal iframe {
    border-radius: var(--radius);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .journey-navigation {
        width: 110%;
        left: -5%;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    .testimonial-container {
        padding: 1.5rem;
    }
    
    .cta-box {
        padding: 1.5rem;
    }
    
    .impact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .impact-icon {
        margin: 0 auto 1rem;
    }
    
    .promo-box {
        flex-direction: column;
        text-align: center;
    }
    
    .promo-icon {
        margin: 0 auto 1rem;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto 1rem;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
    }

    #extract-modal iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .book-cover {
        max-width: 200px;
    }

    #extract-modal .bg-white {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }

    #extract-modal iframe {
        height: 250px;
    }
}