/* Tablet Devices (768px and below) */
@media (max-width: 768px) {
    /* Navigation for Mobile */
    .desktop-nav {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 24px;
    }
    
    /* Hero Section at Bottom - Mobile Adjustments */
    .hero-bottom {
        padding: 70px 0;
    }
    
    .hero-bottom h1 {
        font-size: 1.8rem; /* 50% smaller on mobile */
    }
    
    .hero-bottom .sub-slogan {
        font-size: 1.2rem; /* Adjusted for mobile */
    }
    
    .hero-bottom p {
        font-size: 1rem;
    }
    
    /* Search Section adjustments */
    .search-section {
        padding: 40px 0;
    }
    
    .search-section h2 {
        font-size: 1.5rem; /* 50% smaller on mobile */
    }
    
    .search-section .subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .search-box {
        flex-direction: column;
        border-radius: var(--border-radius);
    }
    
    .search-box input {
        border-radius: var(--border-radius) var(--border-radius) 0 0;
        border-right: 1px solid #ddd;
        border-bottom: none;
    }
    
    .search-box button {
        border-radius: 0 0 var(--border-radius) var(--border-radius);
    }
    
    .platforms, .states, .categories {
        margin: 30px 0;
    }
    
    .platforms h3, .states h3, .categories h3 {
        font-size: 1.1rem;
    }
    
    .platform-icons, .state-list, .category-list {
        gap: 10px;
    }
    
    .platform-icon, .state-item, .category-item {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    /* Latest Registrations adjustments */
    .latest-registrations {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }
    
    .profiles {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .profile-card {
        padding: 20px;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .profile-avatar {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    /* Statistics adjustments */
    .statistics {
        padding: 50px 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    /* Subscription Plans adjustments */
    .subscription-plans {
        padding: 50px 0;
    }
    
    .plans-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card {
        padding: 30px 20px;
    }
    
    .plan-title {
        font-size: 1.5rem;
    }
    
    .plan-price {
        font-size: 1.8rem;
    }
    
    /* Footer adjustments */
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }
    
    .footer-column h3 {
        font-size: 1.2rem;
    }
}

/* Mobile Devices (480px and below) */
@media (max-width: 480px) {
    .container {
        width: 95%;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .hero-bottom {
        padding: 50px 0;
    }
    
    .hero-bottom h1 {
        font-size: 1.6rem;
    }
    
    .hero-bottom .sub-slogan {
        font-size: 1.1rem;
    }
    
    .hero-bottom p {
        font-size: 0.9rem;
    }
    
    .hero-bottom .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .search-section h2 {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .profile-avatar {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .profile-info h3 {
        font-size: 1.1rem;
    }
    
    .platform-icon, .state-item, .category-item {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .mobile-nav {
        width: 100%;
        border-radius: 0;
    }
}

/* Large Screens (1200px and above) */
@media (min-width: 1200px) {
    .container {
        max-width: 1300px;
    }
    
    .profiles {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .hamburger-menu,
    .mobile-nav,
    .btn,
    .search-box button {
        display: none !important;
    }
    
    .search-box input {
        border: 1px solid #000;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .profile-card,
    .stat-item,
    .plan-card {
        box-shadow: none;
        border: 1px solid #ddd;
    }
}