.goals-section {
    background-image: url('/wp-content/uploads/2024/03/SWITCH-BC-Our-Goals-Photo.jpg');
    background-size: cover;
    background-position: center top;
    padding: 15vh 10% 15vh 10%; /* Adjust the top, right, bottom, and the left padding as desired */
    box-sizing: border-box; /* Ensures padding is included in width/height calculations */
    color: #FFFFFF; /* Assuming white text color for contrast, adjust as needed */
}

.goals-section h2 {
    margin: 0 0 20px 0; /* Adjust bottom margin as needed */
    /* Use additional styling here as needed for the heading */
    color:white;
    max-width:50%;
    padding-bottom:15px;
}

@media (max-width: 768px) {
    .goals-section h2 {
        max-width:unset;
  
    }
    .goals-section {
        padding:8vh 10vw;
    }
}

.goals-button {
    margin-top:5%;
    text-transform:uppercase;
    color:white;
    background-color:transparent;
    padding:11px 17px;
    border-radius:100px;
    letter-spacing:20%;
    font-weight:500;
    font-size:16px;
    border:2px white solid;
}
.goals-button:hover {
    text-decoration:none;
    background-color:white;
    color:#6971AB;
}