/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
}

:root {
    --primary-color: #ffffff;
    --secondary-color: #e5e7eb;
    --text-color: #ffffff;
    --text-light: #d1d5db;
    --bg-color: #000000;
    --bg-light: #111111;
    --bg-section: #1a1a1a;
    --bg-accent: #2a2a2a;
    --border-color: #333333;
    --hover-color: #ffffff;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.5), 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Open Sans', 'Roboto', 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
    touch-action: manipulation;
}

/* Header Styles */
.site-header {
    background-color: #111111;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 2px solid #333333;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.site-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.site-logo img {
    filter: brightness(0) invert(1);
}

.site-logo span {
    color: var(--secondary-color);
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
    opacity: 0.8;
}

.menu-toggle {
    display: none;
    background: var(--primary-color);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
    z-index: 1001;
}

.menu-toggle:hover {
    background: var(--hover-color);
}

.menu-toggle:active {
    transform: scale(0.95);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section - Column Layout */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #000000 0%, #111111 100%);
    color: var(--text-color);
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    grid-template-columns: none !important;
}

.hero-title {
    text-align: center;
    width: 100%;
    order: 1;
    grid-column: auto !important;
}

.hero-tool {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    order: 2;
    grid-column: auto !important;
}

.hero-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    order: 3;
    grid-column: auto !important;
}

        .hero-badge {
            display: none; /* Hidden on all devices */
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
            color: #000000;
            padding: 0.5rem 1.25rem;
            border-radius: 2rem;
            font-size: 0.875rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            animation: fadeInUp 0.6s ease;
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
        }

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    animation: fadeInUp 0.8s ease;
    line-height: 1.1;
    letter-spacing: -1px;
    text-align: center;
}

.hero-title .highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff, #e5e7eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    line-height: 1.7;
    font-weight: 400;
    text-align: center;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    animation: fadeInUp 1.2s ease;
    justify-items: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 0.5rem;
}

.hero-tool {
    background: #111111;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease;
    position: relative;
}

.hero-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #e5e7eb);
    border-radius: 1.5rem 1.5rem 0 0;
}

.hero-tool-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.hero-tool-input {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #1a1a1a;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.hero-tool-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.hero-tool-button {
    width: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    color: #000000;
    padding: 1rem;
    border: none;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.hero-tool-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #e5e7eb 0%, #ffffff 100%);
}

.hero-tool-result {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 0.75rem;
    border-left: 4px solid var(--secondary-color);
    display: none;
}

.hero-tool-result.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.hero-tool-result-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-tool-result-output {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    word-break: break-all;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Converter Tool */
.converter-section {
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    padding: 2.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.8), 0 0 0 1px rgba(255, 255, 255, 0.1);
    margin: -1.5rem auto 3rem;
    max-width: 800px;
    border: 2px solid #333333;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.converter-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.9), 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.converter-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-align: center;
    color: var(--text-color);
}

.converter-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-label {
    font-weight: 500;
    color: var(--text-color);
}

.converter-input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.converter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.convert-button {
    background: linear-gradient(135deg, #ffffff 0%, #e5e7eb 100%);
    color: #000000;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.convert-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0,0,0,0.2), transparent);
    transition: left 0.5s;
}

.convert-button:hover::before {
    left: 100%;
}

.convert-button:hover {
    background: linear-gradient(135deg, #e5e7eb 0%, #ffffff 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.result-container {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background-color: #1a1a1a;
    border-radius: 0.5rem;
    border-left: 4px solid var(--secondary-color);
    display: none;
}

.result-container.show {
    display: block;
}

.result-label {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.result-output {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    word-break: break-all;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Content Sections */
.content-section {
    padding: 3rem 0;
    background-color: #000000;
}

.content-section:nth-child(even) {
    background-color: #0a0a0a;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    background-color: #111111;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: 1px solid #333333;
    position: relative;
    overflow: hidden;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.content-card:hover::before {
    transform: scaleX(1);
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.1);
    background-color: #1a1a1a;
    border-color: #555555;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.card-text {
    color: var(--text-light);
    line-height: 1.8;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    padding: 3rem 0;
    margin: 3rem 0;
    border-radius: 1rem;
    color: white;
    border: 1px solid #333333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Blog & Resources Section */
.blog-item {
    transition: all 0.3s ease;
}

.blog-item:hover {
    padding-left: 1rem;
    border-left: 3px solid var(--primary-color);
}

.blog-item:hover h3 a {
    color: var(--primary-color);
}

.view-all-button:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta-section {
    background-color: #1a1a1a;
    color: white;
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    text-align: center;
    margin: 3rem 0;
    border: 1px solid #333333;
}

.cta-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(5, 150, 105, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    background-color: #f3f4f6;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-color);
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.feature-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background: var(--bg-color);
}

.steps-container {
    max-width: 900px;
    margin: 0 auto;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    text-align: center;
    padding: 2rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: #000000;
    color: #9ca3af;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
    border-top: 1px solid #333333;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Ensure desktop layout is always column */
@media (min-width: 769px) {
    .hero-wrapper {
        display: flex !important;
        flex-direction: column !important;
        grid-template-columns: none !important;
    }
    
    .hero-title,
    .hero-tool,
    .hero-content {
        grid-column: auto !important;
        width: 100% !important;
    }
}

/* Features Grid Responsive */
@media (max-width: 1200px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .content-section {
        padding: 2.5rem 0;
    }
}

@media (max-width: 768px) {
    .features-grid-new {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
    
    .feature-box-new {
        margin-bottom: 2rem;
    }
    
    .feature-icon-circle {
        width: 120px !important;
        height: 120px !important;
    }
    
    .feature-icon-circle div {
        font-size: 3rem !important;
    }
    
    .menu-toggle {
        display: block;
        order: 2;
    }

    .header-container {
        position: relative;
    }

    .main-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #111111;
        flex-direction: column;
        display: none;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-top: 1px solid #333333;
    }

    .main-navigation.active {
        display: flex;
        max-height: 600px;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu a {
        display: block;
        padding: 1rem 1.5rem;
    }

    .hero-section {
        padding: 2rem 0;
    }

    .hero-wrapper {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
        order: 1;
        display: block !important;
        text-align: center;
        grid-column: auto;
    }

    .hero-tool {
        padding: 1.5rem 1rem;
        margin-top: 0;
        margin-left: auto;
        margin-right: auto;
        order: 2;
        max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        order: 3;
    }

    .hero-badge {
        display: none;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        display: block !important;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        order: 1;
    }

    .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-top: 1.5rem;
        order: 2;
    }

    .hero-feature {
        font-size: 0.875rem;
    }

    .hero-feature-icon {
        font-size: 1.25rem;
        width: 35px;
        height: 35px;
    }

    .hero-tool-title {
        font-size: 1.25rem;
    }

    .converter-section {
        padding: 2rem 1rem;
        margin-top: -1rem;
    }

    .section-title {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    .content-section h2.section-title {
        font-size: 1.75rem !important;
    }

    .content-section p {
        font-size: 1rem !important;
        padding: 0 1rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .blog-item {
        padding: 1.5rem 0 !important;
    }

    .blog-item h3 {
        font-size: 1.25rem !important;
    }

    .blog-item:hover {
        padding-left: 0.5rem !important;
    }

    .stats-section {
        margin: 2rem 0;
        padding: 2rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }

    .cta-title {
        font-size: 1.5rem !important;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
        padding: 0 0.5rem;
    }

    .hero-features {
        grid-template-columns: 1fr !important;
        gap: 0.75rem;
    }

    .hero-feature {
        font-size: 0.8rem;
    }

    .hero-tool {
        padding: 1.25rem 0.75rem;
    }

    .hero-tool-input {
        font-size: 0.9rem;
        padding: 0.875rem;
    }

    .hero-tool-button {
        font-size: 1rem;
        padding: 0.875rem;
    }

    .converter-input {
        font-size: 1rem;
    }

    .convert-button {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem !important;
    }

    .content-section h2.section-title {
        font-size: 1.5rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .feature-icon-circle {
        width: 100px !important;
        height: 100px !important;
    }

    .feature-icon-circle div {
        font-size: 2.5rem !important;
    }

    .feature-title-box h3 {
        font-size: 0.875rem !important;
        padding: 0.75rem !important;
    }

    .cta-title {
        font-size: 1.25rem !important;
    }

    .cta-section p {
        font-size: 1rem !important;
    }

    .blog-item h3 {
        font-size: 1.125rem !important;
    }

    .blog-item p {
        font-size: 0.9rem !important;
    }
}

/* Remove tap highlight on mobile */
a, button, input, textarea, select, label, div, span, li, p, h1, h2, h3, h4, h5, h6 {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-touch-callout: none;
}

/* Focus Styles - for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Remove outline and tap highlight on mobile touch */
@media (max-width: 768px) {
    * {
        -webkit-tap-highlight-color: transparent !important;
        -webkit-touch-callout: none;
    }
    
    a:focus,
    button:focus,
    input:focus,
    textarea:focus {
        outline: none !important;
    }
}
