h1, h2, h3, h4, h5, h6, p, span, li, a, button, div {
    font-family: 'Figtree';
}

h1 {
    margin-top: 0px;
}

h2 {
    font-size: 34px;
    font-weight: 500;
    margin-top: 0px;
}

h3 {
    font-size: 28px;
}

.section-title {
    font-size: 4rem;
    margin-top: 0px;
}

h2.section-title {
    margin-bottom: 30px;
}

p {
    font-size: 20px;
}

.center {
    text-align: center;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color:#FF9000;
}

button {
    cursor: pointer;
}

.orange-button {
    background: #FF9000;
    padding: 10px 20px;
    font-size: 24px;
    color: white;
    border: none;
    border-radius: 30px;
}

.orange-button:hover {
    background: white;
    color: #FF9000;
    border: 3px solid #FF9000;
    box-sizing: border-box;
    margin-left: -8px;
    font-weight: bold;
}

.dark-button {
    background: #022C22;
    padding: 10px 20px;
    font-size: 24px;
    color: white;
    border: none;
    border-radius: 30px;
}

.dark-button:hover {
    background: #ffc579;
    color: #022C22;
    box-sizing: border-box; 
}

.vert:hover {
    margin-top: -6px;
}

section {
    display: flex; 
    flex-direction: column;
    justify-content: center; 
    align-items: center; 
    padding: 60px 20px;
}

.container {
    width: 1000px; 
    max-width: 100%; 
    text-align: center;
}

.flex-container {
    width: 1000px; 
    max-width: 100%; 
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 40px;
}

.flex-col {
    flex-direction: column;
}

.marg-bottom {
    margin-bottom: 50px;
}


/* Slider ----------------- */

.slider {
      position: relative;
      width: 600px;
      max-width: 70%;
      background: white;
      border-radius: 12px;
      padding: 40px 20px;
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
      text-align: center;
    }

    .stars {
      color: #FFA500;
      font-size: 20px;
      margin-bottom: 20px;
    }

    .quote {
      font-size: 20px;
      color: #333;
      line-height: 1.5;
      margin-bottom: 30px;
    }

    .author {
      font-weight: 600;
      color: #222;
      margin-bottom: 5px;
    }

    .role {
      color: #777;
      font-size: 14px;
    }

    .arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      color: #df6500;
      transition: color 0.3s ease;
    }

    .arrow:hover {
      color: black;
      font-weight: 800;
    }

    .arrow.left {
      left: -50px;
    }

    .arrow.right {
      right: -50px;
    }

    @media (max-width: 748px) {

        .slider {
            padding: 20px 45px;
            min-height: 535px !important;
        }

        .arrow.left {
        left: 10px;
        }

        .arrow.right {
        right: 10px;
        }
    }



/* Media Queries ------------------------------ */



@media (max-width: 961px) {

    .resp-p {
        font-size: 26px !important;
    }

    header {
        flex-direction: column;
        padding: 20px 20px !important;
    }

    ul {
        column-gap: 25px !important;
    }

    .section-title {
        font-size: 2.8rem !important;
    }

    .orange-button:hover {
        margin-top: -6px !important;
        margin-left: -3px !important;
    }

} 

@media (max-width: 747px) {

    .flex-container {
        flex-direction: column;
    }

    .flex-container div {
        width: 100% !important;
    }

    h2 {
        font-size: 24px;
    }
}