/* Specific CSS for about.html */
#about-section1 {
    padding: 50px 0;
    color: darkgreen;
}

#about-section1 {
    background-image: url('../images/Slider_Accordian/addp-slider-bg1_b.png' );
    background-repeat: no-repeat;
    background-size: cover;
}

#about-section1 h2 {
    font-size: 3em;
    color: #009671;
    font-weight: 700;
}

#about-section2 {
    background-color: white;
    padding: 50px 0;
}

#about-section2 p {
    color: black;
}

#about-section3 {
    background-color: #50b848;
    padding: 50px 0;
}

#about-section3 h2 {
    font-size: 2rem;
    color: #FFF;
    font-weight: 700;
}

#about-section3 button {
    background-color: #FFF;
    color: #8dcb3f;
    padding: 10px 20px;
    border-radius: 3px;
    border: none;
    font-size: 1.3em;
    font-weight: 600;    
}

.about-call-me-back-button:hover {
    background-color: #5cb85c; /* Green background on hover */
    color: white;
}


/* PARALLAX */
.parallax {
    background-image: url('../images/Background/orange-bg-graphic1_b.png');
    height: 200px;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}
.parallax-text {
    background: rgba(0,0,0,0.5);
    padding: 20px;
}

/* Styles for screens up to 768px wide */
@media screen and (max-width: 800px) {
  #about-section1 h2 {
    font-size: 2.1rem;
    padding: 15px;
  }
}

/* Styles for screens up to 480px wide */
@media screen and (max-width: 480px) {

  #about-section1 h2 {
    font-size: 1.7rem;
    padding: 10px;
  }

  #about-section3 h2 {
    font-size: 1.7rem;
    color: #FFF;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: center;
}
}