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

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800;900&display=swap');

html, body {
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

/* Logo Styles */
.site-logo {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    margin: 0.5rem 0;
    line-height: 1;
    position: relative;
    display: inline-block;
    transform: scale(0.8);
    transform-origin: center top;
}

.logo-proud {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 2px 2px 0 #003366;
    margin-bottom: 0.2rem;
}

.logo-veteran {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(45deg, #ffd700 0%, #ffeb99 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    letter-spacing: -0.03em;
    margin-bottom: 0.2rem;
}

.logo-savings {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #cc0000;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.2);
    letter-spacing: 0.02em;
}

.logo-stars {
    position: absolute;
    top: 50%;
    left: -1.8rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.logo-star {
    width: 0.8rem;
    height: 0.8rem;
    background: #ffd700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* Header Styles */
header {
    background: #003366;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 4px solid #cc0000;
}

.header-content h1 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    background: linear-gradient(120deg, #ffffff 0%, #ffd700 35%, #fff5cc 65%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    padding: 0.5rem 0;
}

@media (max-width: 768px) {
    .site-logo {
        margin: 0.3rem 0;
        transform: scale(0.7);
    }

    .logo-proud {
        font-size: 1.4rem;
    }

    .logo-veteran {
        font-size: 1.8rem;
    }

    .logo-savings {
        font-size: 1.6rem;
    }

    .logo-stars {
        left: -1.2rem;
    }

    .logo-star {
        width: 0.6rem;
        height: 0.6rem;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }
}

.header-content h1 span.highlight {
    color: #cc0000;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.header-content h1 span.emphasis {
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Add these new styles after the header styles section */
.meta-info {
    display: none;
}

.social-share {
    background: #f8f9fa;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 2rem 1rem;
    margin: 2rem 0 0;
    width: 100%;
}

.share-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.share-text {
    color: #003366;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.social-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-count {
    color: #666;
    font-size: 0.9rem;
    margin-right: 1.5rem;
    padding-right: 1.5rem;
    border-right: 1px solid #e2e8f0;
    white-space: nowrap;
}

.social-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-radius: 4px;
}

/* Platform-specific colors */
.social-btn[data-platform="facebook"] {
    color: #1877f2;
    border-color: #1877f2;
}

.social-btn[data-platform="facebook"]:hover {
    background: #1877f2;
    color: white;
}

.social-btn[data-platform="twitter"] {
    color: #1da1f2;
    border-color: #1da1f2;
}

.social-btn[data-platform="twitter"]:hover {
    background: #1da1f2;
    color: white;
}

.social-btn[data-platform="linkedin"] {
    color: #0077b5;
    border-color: #0077b5;
}

.social-btn[data-platform="linkedin"]:hover {
    background: #0077b5;
    color: white;
}

.social-btn[data-platform="whatsapp"] {
    color: #25d366;
    border-color: #25d366;
}

.social-btn[data-platform="whatsapp"]:hover {
    background: #25d366;
    color: white;
}

.social-btn[data-platform="telegram"] {
    color: #0088cc;
    border-color: #0088cc;
}

.social-btn[data-platform="telegram"]:hover {
    background: #0088cc;
    color: white;
}

.social-btn[data-platform="pinterest"] {
    color: #e60023;
    border-color: #e60023;
}

.social-btn[data-platform="pinterest"]:hover {
    background: #e60023;
    color: white;
}

.social-btn[data-platform="reddit"] {
    color: #ff4500;
    border-color: #ff4500;
}

.social-btn[data-platform="reddit"]:hover {
    background: #ff4500;
    color: white;
}

.social-btn[data-platform="email"] {
    color: #666;
    border-color: #666;
}

.social-btn[data-platform="email"]:hover {
    background: #666;
    color: white;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Mobile-specific styles */
@media (max-width: 480px) {
    .social-share {
        padding: 1.5rem 1rem;
        margin-top: 1.5rem;
    }

    .share-text {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .social-buttons {
        gap: 0.5rem;
    }

    .social-count {
        width: 100%;
        text-align: center;
        margin: 0 0 1rem;
        padding: 0 0 1rem;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .social-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }

    .social-btn svg {
        width: 16px;
        height: 16px;
    }
}

/* Remove rounded corners */
.featured-image img,
.notice-box,
.list-item,
.modal-content,
.quiz-btn,
.read-more {
    border-radius: 0;
}

.featured-image {
    max-width: 700px;
    margin: 1.5rem auto;
    padding: 0 0.5rem;
}

.featured-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subtitle {
    font-size: 1rem;
    color: #e2e8f0;
    max-width: 700px;
    margin: 1rem auto;
    line-height: 1.5;
    padding: 0 0.5rem;
}

.notice-box {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem;
    margin: 1.5rem auto 0;
    max-width: 700px;
}

.notice-box p {
    color: #e2e8f0;
    margin: 0;
    font-size: 0.9rem;
}

/* Main Content Styles */
.listicle-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 0.5rem;
}

.list-item {
    background: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
}

.list-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.text-content {
    padding: 1rem;
    text-align: center;
}

h2 {
    color: #003366;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    text-align: left;
}

h2 .amount {
    color: #cc0000;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(204, 0, 0, 0.2);
}

h2 .keyword {
    color: #003366;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 51, 102, 0.25);
    background: linear-gradient(120deg, rgba(255, 215, 0, 0.2) 0%, rgba(255, 215, 0, 0.1) 100%);
    padding: 0 0.2rem;
}

p {
    color: #4a5568;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    text-align: left;
}

.read-more {
    background: #cc0000;
    color: white;
    border: none;
    padding: 0.75rem 1.25rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: auto;
    margin: 0 auto;
    display: inline-block;
    text-transform: uppercase;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(204, 0, 0, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(204, 0, 0, 0);
    }
}

.read-more:hover {
    background-color: #990000;
    transform: translateY(-2px);
}

.hidden {
    display: none !important;
}

.expanded-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

/* Footer Styles */
footer {
    background: #003366;
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
    margin-top: 2rem;
    border-top: 4px solid #cc0000;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0.6;
}

.footer-section {
    margin-bottom: 1rem;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #e2e8f0;
    font-size: 0.8rem;
}

.footer-links {
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    margin: 0 0.75rem;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
    opacity: 1;
}

.footer-disclaimer {
    margin-top: 1rem;
}

.footer-disclaimer p {
    color: #a0aec0;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
}

.disclaimer {
    color: #a0aec0 !important;
    font-style: italic;
}

/* Accessibility Improvements */
.read-more:focus {
    outline: 3px solid #003366;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .read-more {
        display: none;
    }

    .hidden {
        display: block;
    }

    .list-item {
        break-inside: avoid;
    }
}

/* Responsive Design */
@media (min-width: 768px) {
    header {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .featured-image {
        margin: 2rem auto;
        padding: 0 1rem;
    }

    .subtitle {
        font-size: 1.2rem;
        margin: 1.5rem auto;
    }

    .notice-box {
        padding: 1.5rem;
        margin: 2rem auto 0;
    }

    .notice-box p {
        font-size: 1.1rem;
    }

    .list-item img {
        height: 350px;
    }

    .text-content {
        padding: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
    
    h2 .alert {
        font-size: 0.85em;
    }

    p {
        font-size: 1.1rem;
    }

    .read-more {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }

    footer {
        padding: 2rem;
        margin-top: 3rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.9rem;
        margin: 0 1rem;
    }

    .footer-disclaimer p {
        font-size: 0.8rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #666;
}

.close:hover {
    color: #000;
}

.quiz-step {
    text-align: center;
    padding: 20px 0;
}

.quiz-step h3 {
    margin-bottom: 20px;
    color: #003366;
    font-size: 1.2rem;
}

.quiz-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 12px 24px;
    margin: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.quiz-btn:hover {
    background-color: #990000;
}

.hidden {
    display: none !important;
}

.progress-container {
    width: 100%;
    height: 4px;
    background-color: #e2e8f0;
    margin: 20px 0;
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    width: 0%;
    height: 100%;
    background: #cc0000;
    transition: width 3s ease-in-out;
}

.provider-logo {
    max-width: 200px;
    margin: 20px auto;
    display: block;
}

.countdown {
    font-size: 0.9rem;
    color: #666;
    margin-top: 15px;
    text-align: center;
}

.urgency {
    color: #cc0000;
    font-weight: bold;
    margin: 20px 0;
}

.success-content {
    opacity: 0;
    transition: opacity 0.5s;
}

.success-content.visible {
    opacity: 1;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #003366;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 0;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    margin-bottom: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2);
}

.quiz-step {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border: 1px solid #e2e8f0;
    margin: 1rem 0;
}

.quiz-step h3 {
    color: #003366;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.quiz-btn {
    background: #cc0000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    margin: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 120px;
}

.quiz-btn:hover {
    background-color: #990000;
    transform: translateY(-2px);
}

#analyzing {
    text-align: center;
    margin: 2rem 0;
}

.success-content {
    text-align: center;
    padding: 1rem;
}

.countdown {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin: 1rem 0;
}

#timer {
    font-weight: bold;
    color: #cc0000;
}

#disqualified {
    text-align: center;
    padding: 2rem;
    background-color: #f8f9fa;
}

#disqualified h3 {
    color: #cc0000;
    margin-bottom: 1rem;
}

@media (max-width: 480px) {
    .quiz-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .form-group {
        padding: 0 1rem;
    }
}

.urgency-box {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5cc 100%);
    border-left: 4px solid #ffd700;
    padding: 1.5rem;
    margin: 1.5rem 0;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency-box::before {
    content: '⚠️';
    position: absolute;
    left: -12px;
    top: -12px;
    background: #fff;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgency-box .highlight {
    color: #cc0000;
    font-weight: 600;
}

.urgency-box .title {
    color: #003366;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
}

.urgency-box p {
    margin-bottom: 0.75rem;
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

.urgency-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 480px) {
    .urgency-box {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .urgency-box .title {
        font-size: 1rem;
    }
    
    .urgency-box p {
        font-size: 0.9rem;
    }
}

/* MVA Accident Offer Styles */
.attention-grabber {
    font-size: 1.1rem;
    font-weight: 600;
    color: #cc0000;
    margin: 1rem 0;
    line-height: 1.4;
}

.qualification-box {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.qualification-box h3 {
    color: #003366;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.qualification-box ul {
    margin: 0;
    padding-left: 1.5rem;
}

.qualification-box li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    line-height: 1.4;
}

.quiz-btn.disabled {
    background: #e2e8f0;
    cursor: not-allowed;
    opacity: 0.7;
}

.quiz-btn.disabled:hover {
    background: #e2e8f0;
    transform: none;
}

.final-push {
    font-weight: 600;
    color: #003366;
    margin: 1.5rem 0;
    font-size: 1.05rem;
}

#accident-step1 {
    margin: 2rem 0;
    text-align: center;
}

#accident-step1 h3 {
    color: #003366;
    margin-bottom: 1rem;
}

#accident-step1 .quiz-btn {
    margin: 0.5rem;
    min-width: 120px;
}

@media (max-width: 480px) {
    #accident-step1 .quiz-btn {
        width: 100%;
        margin: 0.5rem 0;
    }
}

.highlight-box {
    background: #fff;
    border-left: 4px solid #ffd700;
    padding: 1.25rem;
    margin: 1.25rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.highlight-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.75rem;
}

.highlight-header h3 {
    color: #003366;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.star-icon {
    color: #ffd700;
    font-size: 1rem;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.highlight-box p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.text-content ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.text-content ul li {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.text-content ul li::before {
    content: "✓";
    color: #003366;
    position: absolute;
    left: 0;
    font-weight: bold;
}

@media (max-width: 480px) {
    .highlight-box {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }

    .highlight-header h3 {
        font-size: 1rem;
    }

    .highlight-box p {
        font-size: 0.9rem;
    }
    
    .text-content ul li {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
}

.social-share.compact {
    background: none;
    border: none;
    padding: 0.15rem 0;
    margin: 0 0 0.25rem;
}

.social-share.compact .social-buttons {
    justify-content: center;
    gap: 0.5rem;
}

.social-share.compact .social-count {
    display: none;
}

.social-btn.icon-only {
    padding: 0.5rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-btn.icon-only svg {
    width: 16px;
    height: 16px;
    margin: 0;
}

@media (max-width: 480px) {
    .social-share.compact {
        padding: 0.1rem 0;
        margin: 0 0 0.2rem;
    }

    .social-btn.icon-only {
        width: 32px;
        height: 32px;
    }

    .social-btn.icon-only svg {
        width: 14px;
        height: 14px;
    }
}

/* Platform-specific colors */
.social-btn[data-platform="facebook"] {
    color: #1877f2;
    border-color: #1877f2;
}

.social-btn[data-platform="facebook"]:hover {
    background: #1877f2;
    color: white;
}

.social-btn[data-platform="twitter"] {
    color: #1da1f2;
    border-color: #1da1f2;
}

.social-btn[data-platform="twitter"]:hover {
    background: #1da1f2;
    color: white;
}

.social-btn[data-platform="linkedin"] {
    color: #0077b5;
    border-color: #0077b5;
}

.social-btn[data-platform="linkedin"]:hover {
    background: #0077b5;
    color: white;
}

.social-btn[data-platform="whatsapp"] {
    color: #25d366;
    border-color: #25d366;
}

.social-btn[data-platform="whatsapp"]:hover {
    background: #25d366;
    color: white;
}

.social-btn[data-platform="telegram"] {
    color: #0088cc;
    border-color: #0088cc;
}

.social-btn[data-platform="telegram"]:hover {
    background: #0088cc;
    color: white;
}

.social-btn[data-platform="pinterest"] {
    color: #e60023;
    border-color: #e60023;
}

.social-btn[data-platform="pinterest"]:hover {
    background: #e60023;
    color: white;
}

.social-btn[data-platform="reddit"] {
    color: #ff4500;
    border-color: #ff4500;
}

.social-btn[data-platform="reddit"]:hover {
    background: #ff4500;
    color: white;
}

.social-btn[data-platform="email"] {
    color: #666;
    border-color: #666;
}

.social-btn[data-platform="email"]:hover {
    background: #666;
    color: white;
}

.social-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-text.compact {
    font-size: 0.9rem;
    color: #e2e8f0;
    margin-bottom: 0.15rem;
    text-align: center;
    font-weight: normal;
}

@media (max-width: 480px) {
    .share-text.compact {
        font-size: 0.85rem;
        margin-bottom: 0.1rem;
    }
}

.product-video {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

/* Optimize video loading on mobile */
@media (max-width: 768px) {
    .product-video {
        height: 300px; /* Fixed height for mobile */
        object-position: center;
    }
}

/* Reduce motion if user prefers */
@media (prefers-reduced-motion: reduce) {
    .product-video {
        animation: none;
        transition: none;
    }
}

.email-form {
    margin: 1.5rem 0 1rem;
}

.email-form .form-group {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    flex-wrap: wrap;
}

.email-form .form-control {
    flex: 1;
    min-width: 200px;
    margin: 0;
}

.email-form .read-more {
    margin: 0;
    white-space: nowrap;
}

.thank-you-box {
    background: linear-gradient(135deg, #e6ffe6 0%, #ccffcc 100%);
    border-left: 4px solid #00cc00;
    padding: 1.5rem;
    margin: 1.5rem 0;
    text-align: center;
}

.thank-you-box .title {
    color: #006600;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.thank-you-box p {
    color: #333;
    text-align: center;
    margin-bottom: 0.75rem;
}

.thank-you-box small {
    color: #666;
    font-style: italic;
}

@media (max-width: 480px) {
    .email-form .form-group {
        flex-direction: column;
    }
    
    .email-form .read-more {
        width: 100%;
    }
    
    .thank-you-box {
        padding: 1.25rem;
        margin: 1.25rem 0;
    }
    
    .thank-you-box .title {
        font-size: 1.1rem;
    }
}

.email-collection-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.email-collection-content {
    max-width: 600px;
    margin: 0 auto;
}

.email-collection-content h3 {
    color: #003366;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.email-collection-content p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: center;
}

.email-collection-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
}

.email-collection-content ul li {
    color: #4a5568;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.4;
}

.email-collection-content ul li::before {
    content: "✓";
    color: #003366;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.email-form {
    margin: 0;
    padding: 0 1rem;
}

.email-form .form-group {
    display: flex;
    gap: 0.75rem;
    margin: 0;
    flex-wrap: wrap;
}

.email-form .form-control {
    flex: 1;
    min-width: 200px;
    margin: 0;
    padding: 0.75rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.email-form .form-control:focus {
    outline: none;
    border-color: #003366;
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.1);
}

.email-form .read-more {
    margin: 0;
    white-space: nowrap;
    padding: 0.75rem 1.5rem;
}

@media (max-width: 640px) {
    .email-collection-box {
        padding: 1rem;
        margin: 1rem 0;
    }

    .email-collection-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .email-collection-content ul {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .email-form {
        padding: 0;
    }

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

    .email-form .read-more {
        width: 100%;
    }
}