@charset "utf-8";
/* CSS Document */

.energy-saving-info-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f3671;
    position: relative;
}

.energy-saving-info-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #fdbf50;
}

.categories-section {
    
    padding-top: 50px;
	padding-bottom:40px;
    background-color: #e6e6e7;
}

.category-card {
    background-color: #fff;
    
    padding: 30px 20px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.icon-container {
    margin-bottom: 20px;
}

.category-icon {
    
}

.category-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1c3661;
    margin-bottom: 25px;
    position: relative;
}

.category-card h3 a{
    font-size: 24px;
    font-weight: 600;
    color: #1c3661;
    text-decoration: none;
}

.category-card h3:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #fdbf50;
}

.logos-container {
    margin-top: 20px;
}

.brand-logo {
    max-width: 100%;
    height: auto;
    max-height: 50px;

}

.description-container {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.description-container a {
    color: #333;
    text-decoration: none;
}

/* Energy Saving Info Section Styling */
.energy-saving-info-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.material-symbols-outlined.energy-icon {
    font-size: 64px;
    color: #1c3661;
    margin-bottom: 20px;
    display: inline-block;
}

.energy-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.energy-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #fdbf50;
}
