.hero-section {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .hero-bg {
        position: absolute;
        top: 0;
        right: 0;
        width: 100% !important;
        height: 100%;
        background-image: url('../images/bg-shape-1.webp');
        background-repeat: no-repeat;
        background-position: center center;
        opacity: 0.7;
        z-index: 1;
        pointer-events: none;
        background-size: 90% 120%;
    }

    .email-verifier-landing {
        position: relative;
        z-index: 2;
        width: 100%;
    }

    .centered-content {
        position: relative;
        z-index: 2;
        padding: 2rem;
        border-radius: 16px;
        max-width: 800px;
        margin: 0 auto;
    }

    .main-title {
        font-size: 3rem;
        font-weight: 700;
        color: #2d3748;
        margin-bottom: 1rem;
    }

    .subtitle {
        font-size: 1.25rem;
        color: #718096;
        margin-bottom: 3rem;
    }

    .search-container {
        display: flex;
        max-width: 600px;
        margin: 0 auto;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        border-radius: 12px;
        overflow: hidden;
    }

    .search-input {
        flex: 1;
        padding: 1.25rem;
        font-size: 1.1rem;
        border: 2px solid #e2e8f0;
        border-right: none;
        border-radius: 12px 0 0 12px;
        transition: all 0.3s ease;
    }

    .search-input:focus {
        outline: none;
        border-color: #1497ec;
    }

    .search-button {
        padding: 1.25rem 2rem;
        background: #1497ec;
        color: white;
        border: none;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .search-button:hover {
        background: #14cea1;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 3rem auto;
        max-width: 800px;
    }

    .feature-card {
        padding: 2rem;
        background: white;
        border-radius: 12px;
        text-decoration: none;
        color: inherit;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .cta-section {
        margin-top: 3rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        padding: 1rem 2rem;
        background: #F80;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: background 0.3s ease;
    }

    .cta-button:hover {
        background: #c54e35;
    }

    .no-card {
        margin-top: 1rem;
        color: #718096;
    }

    .arrow-icon {
        fill: currentColor;
    }

    .email-verifier-section-1 {
        padding: 4rem 2rem;
        color: #ffffff;
    }

    .main_title {
        font-size: 2.5rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 1rem;
        color: #ffffff;
    }

    .subtitle-text {
        text-align: center;
        font-size: 1.2rem;
        color: #CBD5E0;
        margin-bottom: 3rem;
    }

    .stats-container {
        display: flex;
        justify-content: center;
        gap: 2rem;
        margin-bottom: 4rem;
        padding: 2rem;
    }

    .stat-box {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 6px;
        padding: 2rem;
        text-align: center;
        min-width: 300px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: rgba(255, 255, 255, 0.05);
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        margin: 0 auto 1rem;
    }

    .stat-content {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .stat-number {
        display: block;
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        background: linear-gradient(45deg, #1497ec, #64B5F6);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .stat-text {
        color: #E2E8F0;
        font-size: 1.1rem;
        font-weight: 500;
    }

    .email-verifier-images {
        display: grid;
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
        align-items: center;
    }

    .verifier-demo {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .demo-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }

    .demo-label {
        background: #7442DE;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        box-shadow: 0 4px 8px rgba(116, 66, 222, 0.3);
    }

    .verification-features {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .features-list {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .check-icon {
        width: 20px;
        height: 20px;
        background: #1497ec;
        border-radius: 50%;
        position: relative;
    }

    .check-icon::before {
        content: "✓";
        color: white;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .features-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap; /* Added to handle more tags */
        gap: 1rem; /* Reduced from 2rem */
        margin: 0 auto;
        max-width: 1200px; /* Increased from 1000px to accommodate more tags */
        padding: 0 1rem;
    }

    .feature-tag {
        display: flex;
        align-items: center;
        gap: 0.5rem; /* Reduced from 0.75rem */
        background: rgba(255, 255, 255, 0.05);
        padding: 0.3rem 0.6rem;
        border-radius: 5px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: transform 0.3s ease, background 0.3s ease;
        font-size: 0.9rem; /* Added to make text smaller */
    }

    .hero-description {
        max-width: 800px;
        margin: 1.5rem auto;
        color: #718096;
        line-height: 1.6;
    }

    .verification-process {
        max-width: 800px;
        margin: 3rem auto;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        text-align: center;
    }

    .verification-process h3 {
        color: #7442DE;
        margin-bottom: 1rem;
    }

    .verification-process p {
        color: #CBD5E0;
        line-height: 1.6;
    }

    .faq-section {
        padding: 4rem 2rem;
        background: #f8f9fa;
    }

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

    .faq-item {
        background: white;
        padding: 2rem;
        border-radius: 12px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }

    .faq-item h3 {
        color: #2E3C56;
        margin-bottom: 1rem;
    }

    .faq-item p {
        color: #718096;
        line-height: 1.6;
    }

    .card-section {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin: 3rem auto;
        max-width: 1200px;
        padding: 0 1rem;
    }

    .card {
        background-color: #ffffff;
        border-radius: 12px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        padding: 1.5rem;
        flex: 1 1 300px;
        max-width: 360px;
        transition: all 0.3s ease;
        border: 1px solid #f0f0f0;
    }

    .card:hover {
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }

    .icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: inline-block;
        background: #f8f9fa;
        width: 50px;
        height: 50px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .card h2 {
        font-size: 1.2rem;
        margin: 0 0 0.5rem;
        color: #2E3C56;
        font-weight: 600;
    }

    .card p {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.2rem;
        color: #718096;
    }

    .link {
        font-weight: 500;
        text-decoration: none;
        font-size: 0.95rem;
        transition: opacity 0.2s ease;
    }

    .link:hover {
        opacity: 0.8;
    }

    .link.blue {
        color: #1497ec;
    }

    .link.red {
        color: #F84E77;
    }

    .link.green {
        color: #0f9900;
    }

    @media (max-width: 768px) {
        .features-grid {
            grid-template-columns: 1fr;
        }
        
        .search-container {
            flex-direction: column;
        }
        
        .search-input {
            border-radius: 12px 12px 0 0;
            border-right: 2px solid #e2e8f0;
        }
        
        .search-button {
            border-radius: 0 0 12px 12px;
        }

        .stats-container {
            flex-direction: column;
            align-items: center;
        }

        .stat-box {
            width: 100%;
            max-width: 300px;
        }

        .email-verifier-images {
            grid-template-columns: 1fr;
        }

        .features-row {
            flex-direction: column;
            align-items: center;
        }

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

        .card {
            flex: 1 1 100%;
        }
    }