/* Base styles */
:root {
    --primary-color: #32b905;
    --primary-hover: #24f71b;
    --text-color: #333;
    --text-light: #666;
    --border-color: #e5e7eb;
    --bg-light: #ebebeb;
    --transition: all 0.2s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

/* Brands Section */
.brands-section {
    margin: 2rem 0;
}

.brands-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.brands-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
}

.see-all {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.see-all:hover {
    color: var(--primary-color);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.brand-card {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
    transition: var(--transition);
}

.brand-card:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.brand-logo {
    width: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

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

.brand-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.brand-info p {
    font-size: 0.875rem;
            color: var(--text-light);
}

/* Responsive styles */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .brands-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}