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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

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

.container-full {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container-no-padding {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.no-left-padding {
    padding-left: 0 !important;
}

.no-right-padding {
    padding-right: 0 !important;
}

.full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .container-mobile-full {
        padding: 0;
        margin: 0;
        width: 100%;
    }
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #000;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
}

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

.nav-desktop button {
    background: none;
    border: none;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-desktop button:hover {
    color: #000;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
    border-top: 1px solid #000;
    margin-top: 1rem;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile button {
    background: none;
    border: none;
    font-size: 1rem;
    color: #000;
    cursor: pointer;
    padding: 0.5rem;
    text-align: left;
    transition: color 0.3s;
}

.nav-mobile button:hover {
    color: #000;
}

/* Hero Section */
.hero {
    background: #000;
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

.hero-content > p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.download-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid #000;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 500;
    color: #000;
    margin-bottom: 0.5rem;
    text-align: left;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input {
    width: 100%;
    padding: 1rem 3rem 1rem 1rem;
    border: 2px solid #000;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
    color: #000;
    background: #fff;
}

.input-wrapper input:focus {
    outline: none;
    border-color: #000;
}

.input-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #000;
}

.download-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-btn:hover {
    background: #fff;
    color: #000;
}

.download-btn:disabled {
    background: #000;
    color: #fff;
    cursor: not-allowed;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Status Messages */
.status-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
}

.status-message.hidden {
    display: none;
}

.status-message.loading {
    background: #fff;
    border: 2px solid #000;
    color: #000;
}

.status-message.success {
    background: #000;
    border: 2px solid #000;
    color: #fff;
}

.status-message.error {
    background: #fff;
    border: 2px solid #000;
    color: #000;
}

.status-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-icon {
    width: 20px;
    height: 20px;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #fff;
    border-top: 2px solid #000;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.download-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.download-file-btn {
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.download-file-btn:hover {
    background: #fff;
    color: #000;
}

.try-again-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.try-again-btn:hover {
    background: #000;
    color: #fff;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #fff;
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    color: #fff;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature p {
    opacity: 0.9;
}

/* How It Works Section */
.how-it-works {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.how-it-works h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #000;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 64px;
    height: 64px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.step p {
    color: #000;
}

/* Visual Steps Styles */
.steps-visual {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.step-visual {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 16px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.step-visual:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #000;
}

.step-visual:nth-child(even) {
    flex-direction: row-reverse;
}

.step-image {
    flex: 0 0 300px;
    text-align: center;
}

.step-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border: 2px solid #fff;
    transition: transform 0.3s ease;
}

.step-img:hover {
    transform: scale(1.05);
}

.image-description {
    /* Hidden from users but visible to search engines for SEO */
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.image-description p {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}

.image-description strong {
    color: #000;
    font-weight: 600;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-visual:nth-child(even) .step-content {
    text-align: right;
}

.step-content .step-number {
    width: 50px;
    height: 50px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.step-visual:nth-child(even) .step-content .step-number {
    margin-left: auto;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.step-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

/* Mobile Responsive for Visual Steps */
@media (max-width: 768px) {
    .step-visual {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .step-visual:nth-child(even) {
        flex-direction: column !important;
    }
    
    .step-image {
        flex: none;
    }
    
    .step-content {
        text-align: center !important;
    }
    
    .step-visual:nth-child(even) .step-content {
        text-align: center !important;
    }
    
    .step-content .step-number {
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .step-img {
        max-width: 250px;
    }
}

.content-types {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #000;
}

.content-types h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #000;
    text-align: center;
}

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

.content-type {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.content-icon {
    width: 40px;
    height: 40px;
    color: #000;
    flex-shrink: 0;
}

.content-type h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.content-type p {
    color: #000;
}

/* Site Article Styles */
.site-article {
    margin: 3rem 0;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-article:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.article-content {
    position: relative;
}

.site-article h3 {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #000000;
    padding-bottom: 0.5rem;
}

.site-article p {
    color: #333333;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.site-article p:last-child {
    margin-bottom: 0;
    font-weight: 600;
    text-align: center;
    font-size: 1.15rem;
    color: #000000;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
    .site-article {
        margin: 2rem 0;
        padding: 2rem 1.5rem;
    }
    
    .site-article h3 {
        font-size: 1.5rem;
    }
    
    .site-article p {
        font-size: 1rem;
        text-align: left;
    }
    
    .site-article p:last-child {
        text-align: center;
    }
}

/* FAQ Section */
.faq {
    background: #fff;
    padding: 4rem 0;
    text-align: center;
}

.faq h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 3rem;
    text-align: center;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 2px solid #000;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: #000;
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s, padding 0.3s;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #000;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-icon {
    width: 32px;
    height: 32px;
    color: #fff;
}

.footer-logo h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li button,
.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: inline-block;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    width: 100%;
    text-align: left;
    font-family: inherit;
    line-height: 1.4;
}

.footer-section ul li button:hover,
.footer-section ul li a:hover {
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-section ul li button:focus,
.footer-section ul li a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    color: #ffffff;
}

.footer-section ul li button:active,
.footer-section ul li a:active {
    transform: translateX(3px);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #cccccc;
    margin-top: 1rem;
}

/* Video Card Styles */
.video-card {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    max-width: 200px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    position: relative;
    color: #fff;
    border: 2px solid #fff;
}

.video-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.video-card-header {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem 1.5rem 1rem;
    background: transparent;
    border: none;
}

.video-card-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.video-card-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem 2rem;
}

.video-thumbnail-container {
    margin-bottom: 2rem;
    text-align: center;
}

.video-card-thumbnail {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 3px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.video-card-thumbnail:hover {
    transform: scale(1.02);
}

.video-card-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.video-format-info {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.format-label, .file-size {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.download-video-btn, .download-thumbnail-btn {
    width: 100%;
    max-width: 280px;
    padding: 1.2rem 2rem;
    margin-bottom: 1rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.download-video-btn {
    background: rgba(255,255,255,0.9);
    color: #000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.download-video-btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.download-thumbnail-btn {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border: 2px solid rgba(255,255,255,0.5);
}

.download-thumbnail-btn:hover {
    background: rgba(255,255,255,0.2);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Video Result Card Styles */
.video-result-card {
    max-width: 600px;
    margin: 2rem auto;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.video-result-card:not(.hidden) {
    opacity: 1;
    transform: translateY(0);
}

.video-card-container {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 2px solid #000;
}



.video-card-body {
    display: flex;
    padding: 2rem;
    gap: 2rem;
    align-items: center;
}

.video-thumbnail-section {
    flex: 0 0 200px;
}

.result-thumbnail {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border: 1px solid #e0e0e0;
}

.video-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}



.download-options {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.download-option-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-btn {
    background: #000;
    color: #fff;
}

.video-btn:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.thumbnail-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
}

.thumbnail-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Video Result Card Responsive Styles */
@media (max-width: 768px) {
    .video-result-card {
        max-width: 90%;
        margin: 1.5rem auto;
    }
    
    .video-card-body {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1.5rem;
        text-align: center;
    }
    
    .video-thumbnail-section {
         flex: none;
         max-width: 250px;
         margin: 0 auto;
     }
}

@media (max-width: 480px) {
     .video-card-body {
         padding: 1rem;
     }
    
    .video-thumbnail-section {
        max-width: 200px;
    }
    
    .download-option-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
    }
}

/* Video Card Responsive Styles */
@media (max-width: 768px) {
    .video-card {
        max-width: 90%;
        margin: 1rem auto;
    }
    
    .video-card-header {
        padding: 1.5rem 1rem 0.5rem;
    }
    
    .video-card-header h2 {
        font-size: 1.5rem;
    }
    
    .video-card-content {
        padding: 0 1.5rem 1.5rem;
    }
    
    .video-card-thumbnail {
        max-width: 250px;
    }
    
    .video-format-info {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .format-label, .file-size {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    .download-video-btn, .download-thumbnail-btn {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .video-card {
        max-width: 95%;
        border-radius: 16px;
    }
    
    .video-card-header h2 {
        font-size: 1.3rem;
    }
    
    .video-card-content {
        padding: 0 1rem 1rem;
    }
    
    .video-card-thumbnail {
        max-width: 200px;
        border-radius: 12px;
    }
    
    .download-video-btn, .download-thumbnail-btn {
        font-size: 0.9rem;
        padding: 0.9rem 1.2rem;
        border-radius: 30px;
    }
}

/* Download Page Styles */
.article-page {
    min-height: 100vh;
    background: #fff;
    padding: 2rem 0;
}

.download-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.article-header {
    background: #000;
    color: #fff;
    padding: 3rem 2rem;
    text-align: center;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.article-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

.ad-space {
    background: #fff;
    border: 2px dashed #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 600;
    margin: 2rem 0;
}

.ad-banner {
    height: 120px;
    margin: 2rem;
}

.ad-rectangle {
    height: 250px;
    margin: 2rem;
}

.video-info-card {
    background: #fff;
    border: none;
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 8px 16px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-meta {
    font-size: 0.9rem;
    color: #000;
    margin-top: 0.5rem;
}

.timer-section {
    margin-bottom: 2rem;
    text-align: center;
}

.timer-circle {
    width: 120px;
    height: 120px;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    background: #000;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

.timer-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.timer-text {
    font-size: 1.1rem;
    color: #000;
}

.download-ready {
    padding: 2rem;
    background: #fff;
    border: 2px solid #000;
    border-radius: 16px;
    text-align: center;
}

.download-ready h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1rem;
}

.hidden {
    display: none;
}

.article-content {
    padding: 2rem;
    line-height: 1.8;
}

.article-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1rem 0;
    border-left: 4px solid #000;
    padding-left: 1rem;
}

.article-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 1.5rem 0 1rem 0;
}

.article-content p {
    color: #000;
    margin-bottom: 1rem;
}

.article-content ul, .article-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
    color: #000;
}

.download-section {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    border: 2px solid #000;
}

.faq-section {
    margin: 2rem 0;
}

.faq-item {
    background: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-left: 4px solid #000;
}

.faq-item h3 {
    color: #000;
    margin-bottom: 0.5rem;
}

.faq-item p {
    margin: 0;
    color: #000;
}

.video-thumbnail {
    flex: 0 0 200px;
    height: 300px;
    overflow: hidden;
    border-radius: 16px;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    border: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    display: block;
}

.video-details {
    flex: 1;
    text-align: left;
}

.video-details h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 0.5rem;
}

.video-meta {
    display: flex;
    gap: 1rem;
}

.video-meta span {
    background: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid #000;
    font-size: 0.9rem;
    color: #000;
}



.download-final-btn {
    width: 100%;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.download-final-btn:hover {
    background: #fff;
    color: #000;
}

.home-btn {
    width: 100%;
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.8rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    text-decoration: none;
}

.home-btn:hover {
    background: #f5f5f5;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.back-btn {
    background: #fff;
    color: #000;
    border: 2px solid #000;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #000;
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-card-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-info-card {
        flex-direction: column;
        gap: 1rem;
    }
    
    .video-thumbnail {
        flex: none;
    }
    
    .video-details {
        text-align: center;
    }
}

/* Legal Pages Styles */
.legal-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 4rem 0 2rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
    margin-bottom: 2rem;
}

.legal-hero .hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.legal-hero .hero-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.legal-hero .last-updated {
    font-size: 0.9rem;
    color: #868e96;
    font-style: italic;
}

.legal-content {
    padding: 2rem 0 4rem;
}

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

.legal-section {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #000;
}

.legal-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
    margin: 2rem 0 1rem;
}

.legal-section h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: #000;
    margin: 1.5rem 0 0.8rem;
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.2rem;
    text-align: justify;
}

.legal-section ul,
.legal-section ol {
    margin: 1.2rem 0;
    padding-left: 2rem;
}

.legal-section li {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 0.8rem;
}

.legal-section li strong {
    color: #000;
    font-weight: 600;
}

.disclaimer-box {
    background: #f8f9fa;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.disclaimer-box h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.disclaimer-box p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.contact-box {
    background: #fff;
    border: 2px solid #000;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-box h3 {
    color: #000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-box p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

/* Legal Pages Mobile Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 2rem 0 1rem;
    }
    
    .legal-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .legal-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .legal-section {
        padding: 0 0.5rem;
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .disclaimer-box,
    .contact-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .legal-section ul,
    .legal-section ol {
        padding-left: 1.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .download-card {
        padding: 1.5rem;
    }

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

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

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

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

    .download-actions {
        flex-direction: column;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-selector select {
    background: #fff;
    border: 2px solid #000;
    border-radius: 6px;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    font-size: 0.9rem;
    color: #000;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23000" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 0.65rem;
    min-width: 120px;
}

.language-selector select:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
}

.language-selector select:hover {
    background-color: #f8f8f8;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 1rem;
}

.contact > p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #fff;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.contact-icon {
    width: 24px;
    height: 24px;
    color: #000;
    flex-shrink: 0;
}

.contact-item span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000;
}

/* Step Icons */
.step-icon {
    width: 64px;
    height: 64px;
    background: #000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.step-icon svg {
    width: 32px;
    height: 32px;
}

/* FAQ Item Active State */
.faq-item.active .faq-question {
    background: #f8f9fa;
}

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

/* Responsive Contact Section */
@media (max-width: 768px) {
    .contact h2 {
        font-size: 2rem;
    }
    
    .contact > p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1.25rem 1.5rem;
        width: 100%;
        max-width: 300px;
    }
    
    .language-selector select {
        min-width: 100px;
        font-size: 0.85rem;
        padding: 0.4rem 1.5rem 0.4rem 0.6rem;
    }
}

/* Utilities */
.hidden {
    display: none !important;
}

.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Trusted Section Styles */
.trusted-section {
    padding: 80px 0;
    background: #ffffff;
    text-align: center;
}

.trusted-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.trusted-content p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.trusted-companies {
    margin-bottom: 4rem;
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.company-logo {
    background: #ffffff;
    padding: 2rem 1rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.company-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.company-name {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9rem;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

@media (max-width: 768px) {
    .trusted-content h2 {
        font-size: 2rem;
    }
    
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .company-logo {
        padding: 1.5rem 0.5rem;
        min-height: 80px;
    }
    
    .company-name {
        font-size: 0.8rem;
    }
    
    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .companies-grid {
        grid-template-columns: 1fr;
    }
    
    .company-name {
        font-size: 0.75rem;
    }
}

/* Trusted Page Specific Styles */
.trusted-hero {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    padding: 6rem 0 4rem;
    text-align: center;
    margin-top: 80px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.main-content {
    min-height: calc(100vh - 160px);
}

.why-trust-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 3rem 0;
}

.why-trust-content h2 {
    color: #000000;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-feature {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.trust-feature h3 {
    color: #000000;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.trust-feature p {
    color: #666666;
    font-size: 1rem;
    line-height: 1.6;
}

.cta-section {
    background: #000000;
    color: white;
    padding: 4rem 0;
    text-align: center;
    margin: 3rem 0 0;
}

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

.cta-content p {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background: white;
    color: #000000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .trusted-hero {
        padding: 4rem 0 3rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .why-trust-content h2 {
        font-size: 2rem;
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .trust-feature {
        padding: 2rem 1.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .cta-button {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}