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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #ffffff;
    min-height: 100vh;
    padding: 0;
    color: #333;
}

/* Navigation - Mobile First */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #667eea;
    text-decoration: none;
    z-index: 1001;
}

/* Hamburger Menu for Mobile */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #667eea;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

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

/* Hero Section - Google-like Minimalist */
.header {
    text-align: center;
    background: transparent;
    padding: 60px 20px 30px;
    margin-bottom: 30px;
}

/* Simple, clean title */
.header h1 {
    font-size: 2.5rem;
    color: #202124;
    margin-bottom: 0;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.tagline {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 8px;
    font-weight: 500;
}

.subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Supported Platforms - Compact */
.supported-platforms {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.platform {
    background: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    color: #475569;
}

.platform:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
    border-color: #667eea;
}

.platform-more {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 2px 15px rgba(102,126,234,0.4);
    border: none;
}

/* Main Section - Google-like Minimal */
.main-section {
    background: transparent;
    max-width: 700px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 35px;
    justify-content: center;
    border-bottom: 1px solid #e2e8f0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tab {
    padding: 12px 20px;
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    color: #5f6368;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.tab:hover {
    color: #202124;
}

.tab.active {
    color: #1a73e8;
    border-bottom-color: #1a73e8;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Input Section - PROMINENT Google-like Search Box */
.input-section {
    display: flex;
    gap: 12px;
    margin-bottom: 25px;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    transition: box-shadow 0.2s;
}

.input-section:hover {
    box-shadow: 0 2px 8px rgba(32,33,36,.35);
}

.input-section:focus-within {
    box-shadow: 0 2px 8px rgba(32,33,36,.35);
}

.input-section input {
    flex: 1;
    padding: 18px 24px;
    border: none;
    background: transparent;
    font-size: 1.1rem;
    font-weight: 400;
    color: #202124;
}

.input-section input::placeholder {
    color: #5f6368;
    font-weight: 400;
}

.input-section input:focus {
    outline: none;
}

.btn-primary {
    padding: 14px 32px;
    background: #1a73e8;
    color: white;
    border: none;
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
    box-shadow: none;
}

.btn-primary:hover {
    background: #1557b0;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.quick-examples {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.quick-examples span {
    color: #64748b;
    font-weight: 600;
    font-size: 0.9rem;
}

.example-btn {
    padding: 6px 16px;
    background: #f1f5f9;
    border: 2px solid #e2e8f0;
    color: #667eea;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.example-btn:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
    transform: translateY(-2px);
}

/* Video Info */
.video-info {
    margin-top: 25px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
}

.video-preview {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.video-preview img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    flex-shrink: 0;
}

.video-details h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #1e293b;
}

.video-meta {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Download Options */
.download-options h4 {
    margin-bottom: 18px;
    font-size: 1.1rem;
    color: #1e293b;
}

.option-group {
    margin-bottom: 18px;
}

.option-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #475569;
}

.option-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s;
}

.option-group select:focus {
    outline: none;
    border-color: #667eea;
}

.format-buttons {
    display: flex;
    gap: 12px;
}

.format-btn {
    flex: 1;
    padding: 14px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    color: #475569;
}

.format-btn:hover {
    border-color: #667eea;
    background: #f1f5f9;
}

.format-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-download {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    margin-top: 18px;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

/* Batch Section */
.batch-section textarea {
    width: 100%;
    min-height: 180px;
    padding: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: monospace;
    resize: vertical;
    margin-bottom: 18px;
    background: #f8fafc;
    transition: all 0.3s;
}

.batch-section textarea:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.batch-options {
    display: flex;
    gap: 12px;
}

.batch-options select {
    flex: 1;
    padding: 14px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    background: white;
}

/* Loading */
.loading-container {
    background: white;
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e2e8f0;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 18px;
}

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

#loadingText {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

/* Success Message */
.success-message {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    border: 2px solid #10b981;
}

.success-icon {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 18px;
}

.success-content h3 {
    font-size: 1.6rem;
    color: #10b981;
    margin-bottom: 10px;
}

.filename {
    font-family: monospace;
    background: #f8fafc;
    padding: 10px;
    border-radius: 8px;
    margin-top: 12px;
    border: 1px solid #e2e8f0;
    font-size: 0.9rem;
}

/* Features Section */
.features-section {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.features-section h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    color: #1e293b;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-card {
    background: #f8fafc;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102,126,234,0.2);
    border-color: #667eea;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 12px;
}

.feature-card h3 {
    margin-bottom: 12px;
    color: #1e293b;
    font-size: 1.1rem;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.how-it-works h2 {
    text-align: center;
    margin-bottom: 35px;
    font-size: 2rem;
    color: #1e293b;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.step {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.step-number {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 auto 12px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.3);
}

.step h3 {
    margin-bottom: 8px;
    color: #1e293b;
    font-size: 1rem;
}

.step p {
    color: #64748b;
    font-size: 0.9rem;
}

.step-arrow {
    font-size: 1.8rem;
    color: #667eea;
    font-weight: 700;
}

/* About Page */
.about-section {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.about-section h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 3px solid #667eea;
}

.about-section h3 {
    font-size: 1.3rem;
    color: #475569;
    margin: 25px 0 12px 0;
}

.about-section p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 12px;
}

.about-section ul {
    margin-left: 20px;
    margin-bottom: 18px;
}

.about-section li {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 8px;
}

.disclaimer-box {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.disclaimer-box h3 {
    color: #92400e;
    margin-top: 0;
}

.disclaimer-box p {
    color: #78350f;
}

.legal-box {
    background: #eff6ff;
    border: 2px solid #667eea;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.legal-box h3 {
    color: #1e40af;
    margin-top: 0;
}

.legal-box ul li {
    color: #1e40af;
}

.not-allowed {
    background: #fee2e2;
    border: 2px solid #ef4444;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
}

.not-allowed h3 {
    color: #991b1b;
    margin-top: 0;
}

.not-allowed ul li {
    color: #991b1b;
}

/* Footer */
footer {
    background: white;
    border-top: 1px solid #e2e8f0;
    padding: 35px 20px 18px;
    margin-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    color: #64748b;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.copyright {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-top: 12px;
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Blog Styles */
.blog-header {
    text-align: center;
    padding: 50px 20px 35px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 35px;
}

.blog-header h1 {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.blog-header p {
    font-size: 1.05rem;
    color: #64748b;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.blog-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px;
    transition: all 0.3s;
}

.blog-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 35px rgba(102,126,234,0.25);
    transform: translateY(-5px);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.blog-date {
    color: #64748b;
    font-size: 0.85rem;
}

.blog-read-time {
    color: #667eea;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-card h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card h2 a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-card h2 a:hover {
    color: #667eea;
}

.blog-excerpt {
    color: #475569;
    line-height: 1.6;
    margin-bottom: 18px;
    font-size: 0.9rem;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.blog-keywords {
    font-size: 0.8rem;
    color: #64748b;
}

.read-more {
    color: #667eea;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.read-more:hover {
    color: #764ba2;
}

.blog-info-section {
    background: white;
    padding: 35px 25px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 50px;
}

.blog-info-section h2 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 18px;
}

.blog-info-section p {
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 25px;
}

.blog-topics {
    margin-top: 25px;
}

.blog-topics h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 18px;
}

.blog-topics ul {
    list-style: none;
    padding: 0;
}

.blog-topics li {
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    line-height: 1.6;
}

.blog-topics li:last-child {
    border-bottom: none;
}

.blog-topics strong {
    color: #667eea;
    font-weight: 600;
}

/* Blog Post Styles */
.blog-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
}

.blog-post-header {
    text-align: center;
    padding-bottom: 35px;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 35px;
}

.blog-post-title {
    font-size: 2.2rem;
    color: #1e293b;
    margin-bottom: 18px;
    line-height: 1.3;
}

.blog-post-meta {
    display: flex;
    justify-content: center;
    gap: 18px;
    color: #64748b;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-post-content {
    background: white;
    border-radius: 16px;
    padding: 35px 25px;
    color: #1e293b;
    line-height: 1.8;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}

.blog-post-content h2 {
    font-size: 1.8rem;
    color: #1e293b;
    margin: 35px 0 18px;
}

.blog-post-content h3 {
    font-size: 1.4rem;
    color: #1e293b;
    margin: 28px 0 12px;
}

.blog-post-content p {
    margin-bottom: 18px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin: 18px 0;
    padding-left: 28px;
}

.blog-post-content li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.blog-post-content strong {
    color: #667eea;
    font-weight: 600;
}

.blog-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    margin: 40px 0;
}

.blog-cta h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.blog-cta p {
    margin-bottom: 22px;
    font-size: 1.05rem;
}

.blog-cta .btn-primary {
    background: white;
    color: #667eea;
    padding: 14px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    transition: all 0.3s;
}

.blog-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.step-box {
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-left: 4px solid #667eea;
    padding: 18px;
    margin: 22px 0;
    border-radius: 8px;
}

.step-box h4 {
    color: #667eea;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.warning-box {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-left: 4px solid #f59e0b;
    padding: 18px;
    margin: 22px 0;
    border-radius: 8px;
}

.warning-box strong {
    color: #92400e;
}

/* Mobile Responsive - Key Focus */
@media (max-width: 768px) {
    body {
        background: #ffffff;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        transition: right 0.3s ease;
        gap: 15px;
        align-items: flex-start;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-logo span:last-child {
        font-size: 1rem;
    }

    .container {
        padding: 10px;
    }

    .header {
        padding: 30px 15px 20px;
        margin-bottom: 20px;
    }

    .header h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .logo .icon {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .subtitle {
        font-size: 0.75rem;
    }

    .supported-platforms {
        gap: 6px;
        margin-bottom: 15px;
    }

    .platform,
    .platform-more {
        padding: 6px 12px;
        font-size: 0.75rem;
    }

    .main-section {
        padding: 20px 15px;
        margin-bottom: 15px;
    }

    .tabs {
        gap: 5px;
        margin-bottom: 20px;
    }

    .tab {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .input-section {
        flex-direction: column;
        gap: 10px;
        padding: 12px;
        border-radius: 40px;
    }

    .input-section input {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .btn-primary {
        width: 100%;
        padding: 16px 24px;
        font-size: 1rem;
        border-radius: 30px;
    }

    .quick-examples {
        gap: 6px;
    }

    .quick-examples span {
        font-size: 0.8rem;
        width: 100%;
    }

    .example-btn {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

    .video-preview {
        flex-direction: column;
        gap: 15px;
    }

    .video-preview img {
        width: 100%;
        height: auto;
        max-height: 200px;
    }

    .video-details h3 {
        font-size: 1.1rem;
    }

    .format-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .batch-options {
        flex-direction: column;
        gap: 10px;
    }

    .features-section,
    .how-it-works,
    .about-section {
        padding: 30px 18px;
    }

    .features-section h2,
    .how-it-works h2 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

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

    .steps {
        flex-direction: column;
        gap: 20px;
    }

    .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
    }

    .footer-links {
        flex-direction: column;
        gap: 12px;
    }

    .blog-header {
        padding: 35px 15px 25px;
    }

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

    .blog-header p {
        font-size: 0.95rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .blog-post {
        padding: 20px 10px;
    }

    .blog-post-title {
        font-size: 1.6rem;
    }

    .blog-post-content {
        padding: 25px 18px;
        font-size: 1rem;
    }

    .blog-post-content h2 {
        font-size: 1.4rem;
    }

    .blog-post-content h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Menu Overlay */
@media (max-width: 768px) {
    .nav-links.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
}

/* Tablet Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    .header h1 {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
