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

.devices-showcase {
    padding: 4rem 0;
    margin-top: 60px;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.device-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.device-card:hover {
    transform: translateY(-5px);
}

.device-image {
    height: 250px;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.device-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.device-info {
    padding: 1.5rem;
}

.device-info h3 {
    color: #764ba2;
    margin-bottom: 0.5rem;
}

.device-info p {
    color: #666;
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.features-list i {
    color: #764ba2;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .devices-grid {
        grid-template-columns: 1fr;
    }
}

.nav-links a.active {
    color: #764ba2;
    font-weight: bold;
} 