.brands-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../IMG/april-c-NZAaeVR7MFw-unsplash.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.brands-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, white);
}

.perfume-process {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    height: 100%;
}

.perfume-brand-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.perfume-brand-card:hover {
    transform: translateY(-10px);
}

.perfume-img-container {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.perfume-img-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    padding: 20px;
}

.cta {
    background: linear-gradient(135deg, #6e6e72 0%, #949599 100%);
}

.process-step {
    display: flex;
    margin-bottom: 15px;
}

.process-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 15px;
    min-width: 30px;
}