/* Reset and base styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced base styles */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    padding-bottom: 2rem;
    animation: fadeIn 0.8s ease-out;
    background-attachment: fixed;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes headerGlow {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Accessibility improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #6a0dad;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 15px 0;
    background: linear-gradient(to right, #f5eeff, #ede5ff);
    margin-bottom: 20px;
}

.breadcrumb-nav ol {
    display: flex;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav li {
    margin-right: 10px;
}

.breadcrumb-nav a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: " › ";
    color: #9b59b6;
    margin-left: 10px;
}

/* Loading skeleton screens */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 10px;
    border-radius: 8px;
}

.skeleton-text:last-child {
    width: 60%;
    margin-bottom: 0;
}

/* Hero Section */
.hero-section {
    text-align: center;
    padding: 2rem 0 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.features-highlight {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5eeff 100%);
    border-radius: 20px;
    padding: 1.8rem;
    min-width: 200px;
    flex: 1;
    max-width: 250px;
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.12);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(155, 89, 182, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 40px rgba(106, 13, 173, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #ede5ff 100%);
    border-color: rgba(155, 89, 182, 0.4);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #6a0dad 0%, #8e44ad 50%, #9b59b6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(155, 89, 182, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f7fa;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3498db 0%, #2980b9 50%, #1abc9c 100%);
    border-radius: 24px 24px 0 0;
}

/* Accessibility improvements */
*:focus {
    outline: 2px solid #3498db;
    outline-offset: 2px;
}

/* Lazy loading placeholder */
[data-lazy] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

[data-lazy].loaded {
    opacity: 1;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Logo styles */
.logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.logo {
    height: 60px;
    width: auto;
    max-width: 180px;
}

/* Enhanced header styles */
.simple-header {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    color: white;
    padding: 35px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.simple-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.1) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 40%),
                linear-gradient(45deg, rgba(52, 152, 219, 0.15) 0%, transparent 50%);
    pointer-events: none;
    animation: headerGlow 10s ease-in-out infinite alternate;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-text {
    flex: 1;
}

.simple-header h1 {
    font-size: 2.2rem;
    margin: 0 0 12px 0;
    color: white;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    letter-spacing: -0.5px;
}

.simple-header p {
    margin: 0;
    color: #e2e8f0;
    font-size: 1.1rem;
    font-weight: 300;
    max-width: 800px;
    line-height: 1.7;
}

/* Enhanced Navigation styles */
.main-navigation {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    padding: 0 20px;
    border-radius: 14px;
    margin: 0 auto 30px;
    max-width: 1200px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.main-navigation ul {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    list-style: none;
    padding: 0;
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
}

.main-navigation li {
    margin: 0;
}

.main-navigation a {
    display: block;
    padding: 14px 18px;
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.main-navigation a:hover {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(52, 152, 219, 0.3);
    border-radius: 10px;
}

.main-navigation a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.main-navigation a:hover::before {
    left: 100%;
}

.main-navigation a:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    .main-navigation ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .main-navigation a {
        font-size: 0.9rem;
        padding: 10px 8px;
    }
}

/* Header styles */
header {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #1a202c;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header p {
    font-size: 1.2rem;
    color: #4a5568;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.instructions {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-left: 5px solid #4299e1;
    padding: 25px;
    margin-bottom: 40px;
    border-radius: 0 12px 12px 0;
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.1);
}

.instructions h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.instructions ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.instructions li {
    margin-bottom: 10px;
}

.note {
    font-style: italic;
    color: #7f8c8d;
}

/* Upload section */
.upload-section {
    margin-bottom: 30px;
}

.drop-area {
    border: 3px dashed #9b59b6;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(135deg, #f5eeff 0%, #ede5ff 100%);
    margin-bottom: 30px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.drop-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(66, 153, 225, 0.05) 50%, transparent 70%);
    background-size: 300% 300%;
    animation: shine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.drop-area.highlight {
    background: linear-gradient(135deg, #ede5ff 0%, #d7caee 100%);
    border-color: #6a0dad;
    transform: scale(1.03);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.3);
}

.drop-area p {
    margin-bottom: 25px;
    font-size: 1.2rem;
    color: #6c3483;
    font-weight: 500;
}

.button {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 50%, #af7ac5 100%);
    color: white;
    border-radius: 14px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.button:hover {
    background: linear-gradient(135deg, #6a0dad 0%, #8e44ad 50%, #9b59b6 100%);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 30px rgba(106, 13, 173, 0.5);
    letter-spacing: 1.5px;
}

.button:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.6s;
}

.button:hover::before {
    left: 100%;
}

#fileElem {
    display: none;
}

.preview-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.preview-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    background-color: #fff;
    text-align: center;
}

.preview-item .file-name {
    font-weight: bold;
    margin-top: 5px;
    font-size: 0.9rem;
    word-break: break-word;
}

.preview-item .file-size {
    font-size: 0.8rem;
    color: #7f8c8d;
    margin-top: 3px;
}

.no-files-message {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
    padding: 20px;
    grid-column: 1 / -1;
}

.file-count {
    grid-column: 1 / -1;
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: #3498db;
    background-color: #e8f4fc;
    border-radius: 5px;
    margin-top: 10px;
}

/* Options section */
.options-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
}

.options-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-right: 12px;
    transform: scale(1.4);
    accent-color: #4299e1;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"]:checked {
    accent-color: #4299e1;
    background-color: #4299e1;
    border-color: #4299e1;
}

.checkbox-group label {
    transition: all 0.2s ease;
}

.checkbox-group label:hover {
    background-color: #f8f9fa;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
}

.checkbox-group label:has(input:checked) {
    font-weight: bold;
    color: #3498db;
}

.option-label {
    user-select: none;
}

.option-hint {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 10px;
    font-style: italic;
}

/* Controls section */
.controls-section {
    text-align: center;
    margin-bottom: 30px;
}

.primary-button {
    padding: 20px 40px;
    background: linear-gradient(135deg, #6a0dad 0%, #8e44ad 30%, #9b59b6 60%, #af7ac5 100%);
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
    position: relative;
    overflow: hidden;
}

.primary-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #581845 0%, #6a0dad 30%, #8e44ad 70%, #9b59b6 100%);
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 15px 35px rgba(106, 13, 173, 0.6);
    letter-spacing: 1.5px;
}

.primary-button:active:not(:disabled) {
    transform: translateY(-3px) scale(0.98);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.5);
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.7s;
}

.primary-button:hover:not(:disabled)::before {
    left: 100%;
}

.primary-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.primary-button:not(:disabled) {
    cursor: pointer;
}

.progress-container {
    margin-top: 20px;
}

.progress-bar {
    height: 20px;
    background-color: #ecf0f1;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-bar-fill {
    height: 100%;
    background-color: #3498db;
    width: 0%;
    transition: width 0.3s ease;
}

/* Results section */
.results-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.5);
    margin-top: 20px;
}

.results-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.secondary-button {
    padding: 16px 28px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.3);
    position: relative;
    overflow: hidden;
}

.secondary-button:hover {
    background: linear-gradient(135deg, #6a0dad 0%, #8e44ad 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.secondary-button:hover::before {
    left: 100%;
}

.secondary-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.preview-area {
    margin-top: 20px;
}

.preview-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, 0.7);
    border-radius: 12px;
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
}

.preview-content h3 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.no-content-message {
    color: #e74c3c;
    font-style: italic;
    padding: 10px;
    background-color: #fdf2f2;
    border: 1px dashed #e74c3c;
    border-radius: 4px;
}

.not-selected-message {
    color: #7f8c8d;
    font-style: italic;
    padding: 10px;
    background-color: #f8f9fa;
    border: 1px dashed #bdc3c7;
    border-radius: 4px;
}

.text-preview {
    white-space: pre-wrap;
    font-family: monospace;
    font-size: 0.9rem;
}

.image-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.image-preview img {
    max-width: 100%;
    max-height: 150px;
    border: 1px solid #ddd;
    border-radius: 3px;
    object-fit: contain;
}

.table-preview {
    overflow-x: auto;
}

.table-preview table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table-preview th,
.table-preview td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.table-preview th {
    background-color: #f2f2f2;
}

/* File section styling */
.file-section {
    margin-bottom: 30px;
    padding: 15px;
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.file-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

/* Page box styling */
.page-box {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background-color: #fafafa;
}

.page-header {
    background-color: #3498db;
    color: white;
    padding: 8px 15px;
    font-weight: bold;
}

.page-content {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    max-height: 150px;
    overflow-y: auto;
    background-color: #fff;
}

.more-text {
    padding: 10px 15px;
    background-color: #f0f8ff;
    color: #3498db;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
    border-top: 1px solid #e0e0e0;
}

.full-content {
    padding: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.5;
    background-color: #fff;
}

/* Image grid styling */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 15px;
}

.image-box {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.image-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.image-placeholder {
    padding: 20px;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-container {
    padding: 10px;
    text-align: center;
    background-color: #f8f9fa;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.image-info {
    font-weight: bold;
    margin-bottom: 5px;
}

.page-info {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.image-details {
    padding: 12px;
    font-size: 0.85rem;
    background-color: #fff;
}

.detail-label {
    font-weight: bold;
    color: #2c3e50;
}

/* Table styling */
.table-wrapper {
    margin-bottom: 25px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.table-header {
    background-color: #27ae60;
    color: white;
    padding: 12px 15px;
    font-weight: bold;
}

.table-container {
    overflow-x: auto;
    max-width: 100%;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.styled-table th {
    background-color: #f8f9fa;
    font-weight: bold;
    color: #2c3e50;
}

.styled-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.styled-table tr:hover {
    background-color: #e8f4fc;
}

.table-footer {
    padding: 12px 15px;
    background-color: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    font-size: 0.9rem;
    color: #7f8c8d;
}

.more-link {
    color: #3498db;
    cursor: pointer;
    text-decoration: underline;
}

.more-link:hover {
    color: #2980b9;
}

/* Animation classes */
.animated {
    animation-duration: 0.5s;
    animation-fill-mode: both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }
    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

/* Utility classes */
.hidden {
    display: none;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-element.delay-1 {
    animation-delay: 0.1s;
}

.fade-in-element.delay-2 {
    animation-delay: 0.2s;
}

.fade-in-element.delay-3 {
    animation-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Info box styling */
.info-box {
    background: linear-gradient(135deg, #f0f9ff 0%, #e6f7ff 100%);
    border-left: 5px solid #4299e1;
    padding: 20px;
    margin: 20px 0;
    border-radius: 0 10px 10px 0;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(66, 153, 225, 0.1);
    border: 1px solid rgba(66, 153, 225, 0.2);
}

.info-box h3 {
    color: #2c3e50;
    margin-top: 0;
    margin-bottom: 10px;
}

.info-box p {
    margin: 5px 0;
}

.image-download-notice {
    margin-bottom: 20px;
}

/* Enhanced Additional tools section */
.additional-tools {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.7);
    position: relative;
    overflow: hidden;
}

.additional-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6a0dad 0%, #8e44ad 30%, #9b59b6 60%, #af7ac5 100%);
    border-radius: 25px 25px 0 0;
}

.additional-tools h2 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 2rem;
}

.additional-tools p {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.tool-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f0ff 100%);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(155, 89, 182, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(106, 13, 173, 0.1);
}

.tool-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 45px rgba(106, 13, 173, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #ede5ff 100%);
    border-color: rgba(155, 89, 182, 0.5);
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6a0dad 0%, #8e44ad 50%, #9b59b6 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 20px 20px 0 0;
}

.tool-card:hover::before {
    transform: scaleX(1);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.tool-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.tool-card p {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 15px;
    min-height: 60px;
}

.tool-status {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 12px rgba(142, 68, 173, 0.4);
    position: relative;
    overflow: hidden;
}

.tool-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.tool-status:hover::before {
    left: 100%;
}

.tool-card:hover .tool-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* 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: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: none;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 10px;
}

.close:hover {
    color: #000;
}

.tool-input-section {
    margin: 20px 0;
}

.tool-input-section label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #2c3e50;
}

.tool-input-section input, .tool-input-section select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
}

.tool-button {
    background-color: #3498db;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin: 5px;
}

.tool-button:hover {
    background-color: #2980b9;
}

.tool-button.secondary {
    background-color: #95a5a6;
}

.tool-button.secondary:hover {
    background-color: #7f8c8d;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    .drop-area {
        padding: 20px;
    }
    
    .checkbox-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .download-buttons {
        flex-direction: column;
    }
    
    .preview-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Enhanced Footer styles */
.footer-content {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #e2e8f0;
    padding: 50px 0 30px;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-intro {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 0 20px;
    text-align: center;
}

.footer-intro p {
    margin: 0;
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-intro strong {
    color: #3498db;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-nav > div {
    margin-bottom: 20px;
}

.footer-nav h3 {
    color: #3498db;
    margin-bottom: 15px;
    font-size: 1.1rem;
    border-bottom: 1px solid #34495e;
    padding-bottom: 8px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
}

.footer-nav li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    padding: 4px 0;
}

.footer-nav a:hover {
    color: #63b3ed;
    text-decoration: none;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #4299e1 0%, #3182ce 100%);
    transition: width 0.3s ease;
}

.footer-nav a:hover::after {
    width: 100%;
}

.footer-bottom {
    background-color: #1a252f;
    padding: 20px 0;
    margin-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin: 0 0 10px 0;
    color: #95a5a6;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: #cbd5e0;
    text-decoration: none;
    padding: 10px 16px;
    border: 1px solid rgba(74, 85, 104, 0.5);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
}

.social-links a:hover {
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    color: white;
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.3);
}

/* Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Optimize animations for performance */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Responsive footer adjustments */
@media (max-width: 768px) {
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .social-links a {
        width: 100%;
        text-align: center;
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 768px) {
    .trust-factors {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-factor {
        padding: 25px;
    }
    
    .trust-section {
        padding: 30px 20px;
    }
    
    .trust-section h2 {
        font-size: 1.8rem;
    }
    .hero-cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary-button, .cta-secondary-button {
        width: 100%;
        text-align: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .breadcrumb-nav ol {
        flex-wrap: wrap;
        font-size: 0.9rem;
    }
    
    .main-navigation ul {
        gap: 1px;
    }
    
    .main-navigation a {
        font-size: 0.85rem;
        padding: 12px 10px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tool-card {
        padding: 25px 20px;
    }
    
    .tool-icon {
        font-size: 2.2rem;
    }
}

/* Tablet improvements */
@media (min-width: 769px) and (max-width: 1024px) {
    .trust-factors {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .feature-icon {
        font-size: 2.8rem;
    }
    
    .tool-icon {
        font-size: 2.8rem;
    }
}

/* Help Button */
.help-button-container {
    position: absolute;
    top: 20px;
    right: 20px;
}

.help-button {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(243, 156, 18, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.help-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(243, 156, 18, 0.4);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

/* Floating Feedback Button */
.floating-feedback-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none; /* Initially hidden, shown via JavaScript */
}

.floating-feedback-btn button {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.floating-feedback-btn button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, #2980b9, #3498db);
}

.floating-feedback-btn .tooltip {
    position: absolute;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
    background-color: #2c3e50;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 12px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.floating-feedback-btn button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Show feedback button on mobile */
@media (max-width: 768px) {
    .floating-feedback-btn {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-feedback-btn button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Trust Section */
.trust-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 24px;
    padding: 50px;
    margin: 50px 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-section h2 {
    color: #2c3e50;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 700;
}

.trust-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
}

.trust-factor {
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    text-align: center;
}

.trust-factor:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.2);
}

.trust-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: block;
}

.trust-factor h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.trust-factor p {
    color: #7f8c8d;
    line-height: 1.7;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #ffffff 0%, #f5eeff 100%);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 30px rgba(106, 13, 173, 0.1);
    text-align: center;
}

.testimonials-section h2 {
    color: #2d1b69;
    margin-bottom: 30px;
    font-size: 2rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(106, 13, 173, 0.08);
    border: 1px solid rgba(155, 89, 182, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.15);
}

.testimonial-rating {
    color: #f1c40f;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: #2d1b69;
    margin-bottom: 15px;
    line-height: 1.6;
}

.testimonial-author {
    color: #8e44ad;
    font-weight: 600;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.cta-primary-button, .cta-secondary-button {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(106, 13, 173, 0.3);
}

.cta-primary-button {
    background: linear-gradient(135deg, #6a0dad 0%, #8e44ad 100%);
    color: white;
}

.cta-primary-button:hover {
    background: linear-gradient(135deg, #581845 0%, #6a0dad 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.4);
}

.cta-secondary-button {
    background: transparent;
    color: #6a0dad;
    border: 2px solid #6a0dad;
}

.cta-secondary-button:hover {
    background: #6a0dad;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(106, 13, 173, 0.3);
}

/* Accessibility Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #6a0dad;
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 15px 0;
    background: linear-gradient(to right, #f5eeff, #ede5ff);
    margin-bottom: 20px;
}

.breadcrumb-nav ol {
    display: flex;
    list-style: none;
    padding: 0 20px;
    margin: 0;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb-nav li {
    margin-right: 10px;
}

.breadcrumb-nav a {
    color: #6a0dad;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav li:not(:last-child)::after {
    content: " › ";
    color: #9b59b6;
    margin-left: 10px;
}/ *   P e r f o r m a n c e   O p t i m i z a t i o n s   a n d   F i n a l   T o u c h e s   * / 
 
 . l a z y - l o a d   {   o p a c i t y :   0 ;   t r a n s i t i o n :   o p a c i t y   0 . 3 s   e a s e - i n ;   } 
 
 / *   I n t e r n a l   L i n k s   S e c t i o n   * /  
 . i n t e r n a l - l i n k s   {  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # e 9 e c e f   1 0 0 % ) ;  
         p a d d i n g :   2 0 p x ;  
         b o r d e r - r a d i u s :   1 2 p x ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
         t e x t - a l i g n :   c e n t e r ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . i n t e r n a l - l i n k s   p   {  
         m a r g i n :   0 ;  
         c o l o r :   # 4 9 5 0 5 7 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . i n t e r n a l - l i n k s   a   {  
         c o l o r :   # 3 4 9 8 d b ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n :   0   8 p x ;  
         p a d d i n g :   4 p x   8 p x ;  
         b o r d e r - r a d i u s :   4 p x ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . i n t e r n a l - l i n k s   a : h o v e r   {  
         b a c k g r o u n d :   r g b a ( 5 2 ,   1 5 2 ,   2 1 9 ,   0 . 1 ) ;  
         c o l o r :   # 2 9 8 0 b 9 ;  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
 }  
 / *   A u t h o r i t y   S e c t i o n   * /  
 . a u t h o r i t y - s e c t i o n   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 3 0 0 p x ,   1 f r ) ) ;  
         g a p :   3 0 p x ;  
         m a r g i n :   3 0 p x   0 ;  
         p a d d i n g :   2 5 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   # f 8 f 9 f a   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   1 8 p x ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . a w a r d s - c e r t i f i c a t i o n s ,   . s o c i a l - p r o o f   {  
         t e x t - a l i g n :   c e n t e r ;  
 }  
  
 . a w a r d s - c e r t i f i c a t i o n s   h 3 ,   . s o c i a l - p r o o f   h 3   {  
         c o l o r :   # 2 c 3 e 5 0 ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - s i z e :   1 . 4 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . a w a r d s - c e r t i f i c a t i o n s   p ,   . s o c i a l - p r o o f   p   {  
         c o l o r :   # 4 9 5 0 5 7 ;  
         l i n e - h e i g h t :   1 . 7 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
 }  
  
 . s o c i a l - p r o o f   a   {  
         c o l o r :   # 3 4 9 8 d b ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   6 0 0 ;  
         m a r g i n :   0   5 p x ;  
 }  
  
 . s o c i a l - p r o o f   a : h o v e r   {  
         t e x t - d e c o r a t i o n :   u n d e r l i n e ;  
         c o l o r :   # 2 9 8 0 b 9 ;  
 }  
 / *   H o m e p a g e   I n t r o d u c t i o n   R e d e s i g n   * /  
 . i n t r o - h e r o   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n - b o t t o m :   4 0 p x ;  
         p a d d i n g :   3 0 p x   2 0 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f 8 f 9 f a   0 % ,   # e 9 e c e f   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   1 8 p x ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
 }  
  
 . i n t r o - h e r o   h 2   {  
         c o l o r :   # 2 c 3 e 5 0 ;  
         f o n t - s i z e :   2 . 2 r e m ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - w e i g h t :   7 0 0 ;  
 }  
  
 . i n t r o - t a g l i n e   {  
         c o l o r :   # 4 9 5 0 5 7 ;  
         f o n t - s i z e :   1 . 2 r e m ;  
         m a x - w i d t h :   6 0 0 p x ;  
         m a r g i n :   0   a u t o ;  
         l i n e - h e i g h t :   1 . 6 ;  
 }  
  
 . b e n e f i t s - o v e r v i e w   {  
         m a r g i n :   4 0 p x   0 ;  
 }  
  
 . b e n e f i t s - o v e r v i e w   h 2   {  
         t e x t - a l i g n :   c e n t e r ;  
         c o l o r :   # 2 c 3 e 5 0 ;  
         m a r g i n - b o t t o m :   3 0 p x ;  
         f o n t - s i z e :   1 . 8 r e m ;  
 }  
  
 . b e n e f i t s - g r i d   {  
         d i s p l a y :   g r i d ;  
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( a u t o - f i t ,   m i n m a x ( 2 8 0 p x ,   1 f r ) ) ;  
         g a p :   2 5 p x ;  
         m a r g i n - t o p :   2 0 p x ;  
 }  
  
 . b e n e f i t - c a r d   {  
         b a c k g r o u n d :   w h i t e ;  
         p a d d i n g :   3 0 p x ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 0 8 ) ;  
         b o r d e r :   1 p x   s o l i d   r g b a ( 0 ,   0 ,   0 ,   0 . 0 5 ) ;  
         t e x t - a l i g n :   c e n t e r ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
 }  
  
 . b e n e f i t - c a r d : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 8 p x ) ;  
         b o x - s h a d o w :   0   1 5 p x   3 0 p x   r g b a ( 5 2 ,   1 5 2 ,   2 1 9 ,   0 . 1 5 ) ;  
         b o r d e r - c o l o r :   r g b a ( 5 2 ,   1 5 2 ,   2 1 9 ,   0 . 2 ) ;  
 }  
  
 . b e n e f i t - i c o n   {  
         f o n t - s i z e :   2 . 5 r e m ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         d i s p l a y :   b l o c k ;  
 }  
  
 . b e n e f i t - c a r d   h 3   {  
         c o l o r :   # 2 c 3 e 5 0 ;  
         m a r g i n - b o t t o m :   1 5 p x ;  
         f o n t - s i z e :   1 . 3 r e m ;  
         f o n t - w e i g h t :   6 0 0 ;  
 }  
  
 . b e n e f i t - c a r d   p   {  
         c o l o r :   # 6 c 7 5 7 d ;  
         l i n e - h e i g h t :   1 . 6 ;  
         f o n t - s i z e :   1 r e m ;  
 }  
  
 / *   C T A   B a n n e r   * /  
 . c t a - b a n n e r   {  
         t e x t - a l i g n :   c e n t e r ;  
         m a r g i n :   4 0 p x   0 ;  
         p a d d i n g :   2 5 p x ;  
         b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # 3 4 9 8 d b   0 % ,   # 2 9 8 0 b 9   1 0 0 % ) ;  
         b o r d e r - r a d i u s :   1 6 p x ;  
         c o l o r :   w h i t e ;  
 }  
  
 . c t a - b a n n e r   p   {  
         f o n t - s i z e :   1 . 1 r e m ;  
         m a r g i n - b o t t o m :   2 0 p x ;  
         f o n t - w e i g h t :   5 0 0 ;  
 }  
  
 . c t a - b u t t o n   {  
         d i s p l a y :   i n l i n e - b l o c k ;  
         b a c k g r o u n d :   w h i t e ;  
         c o l o r :   # 3 4 9 8 d b ;  
         p a d d i n g :   1 2 p x   3 0 p x ;  
         b o r d e r - r a d i u s :   3 0 p x ;  
         t e x t - d e c o r a t i o n :   n o n e ;  
         f o n t - w e i g h t :   6 0 0 ;  
         f o n t - s i z e :   1 . 1 r e m ;  
         t r a n s i t i o n :   a l l   0 . 3 s   e a s e ;  
         b o x - s h a d o w :   0   4 p x   1 5 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 2 ) ;  
 }  
  
 . c t a - b u t t o n : h o v e r   {  
         t r a n s f o r m :   t r a n s l a t e Y ( - 3 p x ) ;  
         b o x - s h a d o w :   0   8 p x   2 0 p x   r g b a ( 0 ,   0 ,   0 ,   0 . 3 ) ;  
         b a c k g r o u n d :   # f 8 f 9 f a ;  
 }  
 