#yellow-button {
    margin-bottom: 40px;
}

#services {
    margin-bottom: 20px;
}

#proud {
    margin-bottom: 20px;
}

#house-icon {
    font-size: 75px !important;
    padding: 5px;
    margin-bottom: -15px;
}

 #icons a {
    text-decoration: none;
}


#icons {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    color:#003366;
}
  
.icon-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 150px; 
    height: 150px;
    border: 2px solid #003366;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    color: #003366;
    cursor: pointer; 
    transition: all 0.3s ease;
}

.icon-container:hover {
  background-color: #003366;
  color: white;
}

i {
  font-size: 60px; 
}

span {
  margin-top: 8px;
  font-size: 16px;
}

@media (max-width: 650px) {
  #icons {
    flex-direction: column;
    align-items: center;
  }
}
  
#services {
    color:#003366;
}

#lightning {
    font-size: 50px;
    color:#FFD700;
}

#led-container {
    display: flex;
    background-color: #003366;
    width: 100%;
    height: auto;
    min-height: 600px;
    color: white;
    justify-content: center;
    align-items: center;
    padding: 25px;
}

#led-pic {
    width: 45%;
    height: 75%;
    margin: 20px;
}

#led-text {
    display: flex;
    text-align: center;
    flex-direction: column;
    width: 45%;
    height: auto;
    margin-right: 20px;
    margin-left: 20px;
}

#led-text h5 {
    font-size: 40px;
}

#led-text ul {
    text-align: left;
    font-size: 20px;
}

@media screen and (max-width: 830px) {
    #led-container {
        display: block;
        min-height: 350px;
        height: auto;
        width: 100%;    
    }
    #led-pic {
        width: 0%;
        display: none;
    }
    #led-text {
        max-width: none;
        text-align: center;
        width: 100%;
        margin: 5px;
        box-sizing: border-box;
        clear: both;
    }
    #led-text ul {
        text-align: center;
        list-style-type: none;
        padding-left: 0;
    }
}