@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .top-header {
        background-color: #17172f;
        color: #fff;
    }

    .menu-toggle {
        display: block;
    }

    .get-started-button {
        display: none;
    }

    .company-name {
        display: none;
    }

    .search-icon {
        display: none !important;
    }

    .nav-actions {
        gap: 10px;
    }

    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        transform: translateX(-100%);
        bottom: 0;
        background-color: #fff;
        z-index: 1000;
        padding: 32px;
        flex-direction: column;
        transition: transform 0.3s ease;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    .mobile-menu-header {
        display: flex;
        justify-content: flex-end;
        margin-bottom: 32px;
    }
    
    .close-menu {
        width: 40px;
        height: 40px;
        background-color: #f5f5f5;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 20px;
    }
    
    .mobile-nav-links li {
        margin-bottom: 24px;
    }
    
    .mobile-nav-links a {
        font-weight: 600;
        font-size: 15px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }

    .feature {
        padding: 50px 0;
    }

    .feature-row, .about-row {
        flex-direction: column;
    }

    .about-title {
        font-size: 24px;
    }

    .stat-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .stat-item {
        flex-direction: column;
        text-align: center;
    }

    .blog-row {
        flex-direction: column;
    }

    .blog-title {
        font-size: 20px;
    }

    .blog-subtitle {
        font-size: 16px;
    }

    .benefit-content {
        text-align: center;
    }

    .benefit-subtitle {
        justify-content: center;
    }

    .faq-row, .pricing-row, .certicate-row {
        flex-direction: column;
    }

    .pricing-title {
        font-size: 22px;
    }

    .newsletter-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
    }

    .footer-row {
        flex-direction: column;
    }

    .bottom-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .page-title {
        font-size: 24px;
    }

    .contact-row {
        flex-direction: column;
    }
}