/* Clients List Styles */
.clients-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
}

.client-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.client-item:hover {
    background-color: rgba(50, 50, 50, 0.7);
    transform: translateX(10px);
}

.client-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.client-name {
    color: #fff;
    font-size: 1.2rem;
    margin: 0;
}

/* Services List Styles */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.service-item {
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-header {
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 0.5rem;
}

.service-title {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Specialties Page Styles */
.specialties-intro-section {
    padding: 2rem 0;
    background-color: rgba(40, 40, 40, 0.8);
    margin-bottom: 2rem;
}

.specialties-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.8;
}

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

.hero-subtitle {
    text-align: center;
}

.core-services, .advanced-specialties {
    padding: 3rem 0;
    background-color: rgba(35, 35, 35, 0.8);
    margin-bottom: 2rem;
    border-radius: 8px;
}

.specialty-advanced-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 3rem;
    background-color: rgba(50, 50, 50, 0.7);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.specialty-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.specialty-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.specialty-details {
    padding: 1.5rem;
}

.specialty-title {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.specialty-systems {
    margin-top: 1.5rem;
    background-color: rgba(30, 30, 30, 0.7);
    padding: 1rem;
    border-radius: 8px;
}

.specialty-systems h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.specialty-systems ul {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
    padding-left: 1.5rem;
}

@media (min-width: 768px) {
    .specialty-advanced-card {
        flex-direction: row;
    }
    
    .specialty-image {
        width: 40%;
        height: auto;
    }
    
    .specialty-details {
        width: 60%;
    }
}

@media (max-width: 767px) {
    .specialty-image {
        height: 200px;
    }
    
    .specialty-systems ul {
        grid-template-columns: 1fr;
    }
}
