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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
}

.navbar {
    background: #6366f1;
    border-bottom: none;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.transparent-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.navbar.gradient-nav {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.navbar.flat-nav {
    background: #0f172a;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-size: 1.5em;
    font-weight: 700;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #ffffff;
}

.nav-cta {
    background: #ffffff;
    color: #6366f1 !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
}

.nav-cta:hover {
    background: #f8f9fa;
    color: #4f46e5 !important;
}

.hero-section {
    padding: 100px 40px;
}

.colored-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.2em;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 800;
    line-height: 1.15;
}

.hero-text > p {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
    line-height: 1.7;
}

.hero-upload-form {
    margin-top: 35px;
}

.upload-box {
    margin-bottom: 25px;
}

.upload-label {
    display: block;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.upload-label:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.02);
}

.upload-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.upload-label h3 {
    color: #ffffff;
    font-size: 1.4em;
    margin-bottom: 10px;
    font-weight: 600;
}

.upload-label p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05em;
}

.upload-note {
    font-size: 0.9em !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 12px;
}

input[type="file"] {
    display: none;
}

.primary-btn {
    width: 100%;
    padding: 18px;
    background: #ffffff;
    color: #667eea;
    border: none;
    border-radius: 10px;
    font-size: 1.2em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.primary-btn:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.primary-btn.large {
    display: inline-block;
    padding: 18px 45px;
    width: auto;
    font-size: 1.2em;
}

.primary-btn.white-btn {
    background: #ffffff;
    color: #667eea;
}

.primary-btn.white-btn:hover {
    background: #f8f9fa;
    color: #5568d3;
}

.hero-btn {
    margin-top: 5px;
}

.form-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95em;
    margin-top: 15px;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.content-section {
    padding: 100px 40px;
}

.white-bg {
    background: #ffffff;
}

.gray-bg {
    background: #f9fafb;
}

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

.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.two-column.reverse {
    direction: rtl;
}

.two-column.reverse > * {
    direction: ltr;
}

.content-text h2 {
    font-size: 2.8em;
    color: #111827;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.content-text > p {
    font-size: 1.15em;
    color: #4b5563;
    margin-bottom: 35px;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    color: #374151;
    font-size: 1.05em;
    padding: 15px 0;
    line-height: 1.7;
    border-bottom: 1px solid #e5e7eb;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list strong {
    color: #111827;
    font-weight: 700;
}

.content-image {
    display: flex;
    justify-content: center;
}

.content-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: #f9fafb;
    border-radius: 12px;
}

.stat-number {
    font-size: 3em;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95em;
    color: #6b7280;
    line-height: 1.5;
}

.features-section-alt {
    padding: 100px 40px;
}

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

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

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

.section-header-center p {
    font-size: 1.2em;
    color: #6b7280;
}

.features-grid-alt {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card-alt {
    background: #ffffff;
    padding: 45px 35px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    border: 1px solid #e5e7eb;
}

.feature-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.feature-icon-alt {
    font-size: 3.5em;
    margin-bottom: 25px;
}

.feature-card-alt h3 {
    font-size: 1.5em;
    color: #111827;
    margin-bottom: 18px;
    font-weight: 700;
}

.feature-card-alt p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05em;
}

.how-it-works {
    padding: 100px 40px;
    background: #ffffff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 60px;
}

.step-card {
    text-align: center;
    padding: 40px 30px;
    background: #f9fafb;
    border-radius: 12px;
    position: relative;
}

.step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    font-size: 2em;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.step-card h3 {
    font-size: 1.5em;
    color: #111827;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-card p {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1.05em;
}

.cta-banner {
    padding: 100px 40px;
    text-align: center;
}

.gradient-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-banner-content h2 {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-banner-content p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 45px;
}

.footer {
    background: #111827;
    color: #9ca3af;
    padding: 70px 40px 35px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand {
    max-width: 350px;
}

.footer-logo {
    font-size: 1.6em;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 1.05em;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 22px;
    font-weight: 600;
    font-size: 1.15em;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 14px;
    transition: color 0.3s;
    font-size: 1.05em;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 35px;
    border-top: 1px solid #374151;
    text-align: center;
}

.footer-bottom p {
    color: #6b7280;
    font-size: 0.95em;
}

.results-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.results-header h2 {
    font-size: 2.5em;
    color: #111827;
    font-weight: 700;
}

.back-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s;
}

.back-btn:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.output-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 50px;
    margin-bottom: 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ai-output {
    line-height: 1.8;
    color: #374151;
    font-size: 1.05em;
}

.ai-output strong {
    color: #111827;
    font-size: 1.25em;
    display: block;
    margin: 35px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
    font-weight: 700;
}

.ai-output h1 {
    color: #111827;
    font-size: 2em;
    margin: 40px 0 20px 0;
    font-weight: 700;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
}

.ai-output h2 {
    color: #111827;
    font-size: 1.6em;
    margin: 35px 0 18px 0;
    font-weight: 700;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

.ai-output h3 {
    color: #111827;
    font-size: 1.3em;
    margin: 30px 0 15px 0;
    font-weight: 700;
}

.ai-output h4, .ai-output h5, .ai-output h6 {
    color: #111827;
    margin: 25px 0 12px 0;
    font-weight: 700;
}

.ai-output p {
    color: #4b5563;
    margin-bottom: 16px;
    line-height: 1.7;
}

.ai-output ul,
.ai-output ol {
    color: #4b5563;
    margin-left: 30px;
    margin-bottom: 20px;
    padding-left: 10px;
}

.ai-output ul {
    list-style-type: disc;
}

.ai-output ol {
    list-style-type: decimal;
}

.ai-output li {
    margin-bottom: 10px;
    line-height: 1.7;
    padding-left: 5px;
}

.ai-output li strong {
    display: inline;
    font-size: inherit;
    margin: 0;
    padding: 0;
    border: none;
}

.ai-output a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.ai-output a:hover {
    text-decoration: underline;
}

.ai-output blockquote {
    border-left: 4px solid #667eea;
    padding-left: 20px;
    margin: 20px 0;
    color: #6b7280;
    font-style: italic;
}

.ai-output code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.95em;
}

.ai-output pre {
    background: #f3f4f6;
    padding: 15px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 20px 0;
}

.ai-output pre code {
    background: none;
    padding: 0;
}

.ai-output hr {
    border: none;
    border-top: 2px solid #e5e7eb;
    margin: 30px 0;
}

.original-resume {
    margin: 30px 0;
}

.original-resume details {
    background: #fffbeb;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 25px;
}

.original-resume summary {
    cursor: pointer;
    color: #d97706;
    font-size: 1.1em;
    padding: 5px;
    font-weight: 600;
}

.original-resume summary:hover {
    color: #b45309;
}

.resume-text {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #fbbf24;
    color: #6b7280;
    line-height: 1.6;
    white-space: pre-wrap;
}

.action-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 40px;
}

.action-btn {
    padding: 14px 28px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: 700;
    transition: all 0.3s;
    display: inline-block;
}

.action-btn:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.error-box {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 80px auto;
}

.error-box h2 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 2em;
}

.error-box p {
    color: #991b1b;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.legal-content {
    max-width: 900px;
    margin: 100px auto 60px;
    padding: 40px;
}

.legal-content h2 {
    color: #111827;
    font-size: 2.5em;
    margin-bottom: 10px;
    font-weight: 700;
}

.legal-content .last-updated {
    color: #6b7280;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-content section {
    margin-bottom: 40px;
}

.legal-content h3 {
    color: #111827;
    font-size: 1.5em;
    margin-bottom: 15px;
    margin-top: 30px;
    font-weight: 600;
}

.legal-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-content ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-content li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #667eea;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.back-link {
    margin-top: 50px;
    text-align: center;
}

.contact-content {
    max-width: 700px;
    margin: 100px auto 60px;
    padding: 40px;
}

.contact-content h2 {
    color: #111827;
    font-size: 2.5em;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

.contact-content > p {
    text-align: center;
    color: #6b7280;
    font-size: 1.1em;
    margin-bottom: 50px;
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.05em;
}

.required {
    color: #dc2626;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #d1d5db;
    border-radius: 10px;
    font-size: 1em;
    font-family: inherit;
    transition: border-color 0.3s;
    background: #ffffff;
    color: #111827;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.captcha-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 35px 0;
}

.captcha-note {
    margin-top: 12px;
    color: #6b7280;
    font-size: 0.9em;
    text-align: center;
}

.success-message {
    background: #d1fae5;
    border: 1px solid #10b981;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.success-message h3 {
    color: #065f46;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.success-message p {
    color: #047857;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.error-message {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    padding: 35px;
    text-align: center;
    margin-bottom: 30px;
}

.error-message h3 {
    color: #dc2626;
    margin-bottom: 15px;
    font-size: 1.5em;
}

.error-message p {
    color: #991b1b;
    font-size: 1.1em;
}

.contact-info {
    background: #ede9fe;
    border-left: 5px solid #667eea;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.contact-info h3 {
    color: #5b21b6;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-info p {
    color: #6d28d9;
    line-height: 1.6;
}

@media print {
    body {
        background: white;
        color: #000;
    }
    
    .results-header,
    .action-buttons,
    .back-btn,
    .footer,
    .navbar {
        display: none;
    }
    
    .ai-output {
        color: #000;
    }
}

@media (max-width: 968px) {
    .hero-container,
    .two-column,
    .features-grid-alt,
    .steps-grid,
    .stats-grid,
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-text h1 {
        font-size: 2.2em;
    }
    
    .content-text h2,
    .section-header-center h2 {
        font-size: 2em;
    }
    
    .nav-wrapper {
        padding: 0 20px;
    }
    
    .hero-section,
    .content-section,
    .features-section-alt,
    .cta-banner,
    .how-it-works {
        padding: 60px 20px;
    }
    
    .two-column.reverse {
        direction: ltr;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 40px;
}

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

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.pricing-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.pricing-card.featured {
    border: 3px solid #667eea;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.best-seller-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 1.8em;
    color: #111827;
    margin-bottom: 20px;
    font-weight: 700;
}

.plan-price {
    margin: 30px 0;
}

.price {
    font-size: 3.5em;
    color: #667eea;
    font-weight: 800;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
}

.plan-features li {
    padding: 12px 0;
    color: #4b5563;
    font-size: 1em;
    border-bottom: 1px solid #f3f4f6;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    display: inline-block;
    background: #667eea;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.plan-btn:hover {
    background: #4f46e5;
    transform: scale(1.05);
}

.plan-btn.featured-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.plan-btn.featured-btn:hover {
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    margin-top: 50px;
    font-size: 0.95em;
}

/* Upload Page */
.upload-page {
    min-height: calc(100vh - 200px);
    background: #f9fafb;
    padding: 100px 40px 60px;
}

.upload-container {
    max-width: 800px;
    margin: 0 auto;
}

.success-badge {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
}

.success-badge h1 {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.plan-purchased {
    font-size: 1.3em;
    margin-top: 10px;
}

.upload-section {
    background: #ffffff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.upload-section h2 {
    color: #111827;
    font-size: 2em;
    margin-bottom: 15px;
}

.upload-section > p {
    color: #6b7280;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.flash-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.flash-message.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.flash-message.success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.upload-form {
    margin-top: 30px;
}

.file-upload-box {
    margin-bottom: 30px;
}

.file-upload-label {
    display: block;
    border: 3px dashed #d1d5db;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.file-upload-label:hover,
.file-upload-label.dragover {
    border-color: #667eea;
    background: #f8f9ff;
}

.file-upload-label .upload-icon {
    font-size: 4em;
    margin-bottom: 20px;
}

.file-upload-label h3 {
    color: #111827;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.file-upload-label p {
    color: #6b7280;
    font-size: 1.1em;
}

.file-upload-box input[type="file"] {
    display: none;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 20px;
    border: none;
    border-radius: 12px;
    font-size: 1.3em;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.package-features {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.package-features h3 {
    color: #111827;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    color: #4b5563;
    font-size: 1.1em;
    border-bottom: 1px solid #f3f4f6;
}

.features-list li:last-child {
    border-bottom: none;
}

/* Responsive Pricing */
@media (max-width: 968px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .upload-section {
        padding: 30px 20px;
    }
}
