* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: Arial, sans-serif;
}

:root {
    /* COLOR SCHEME */
    --primary-color: #E76400;
    --secondary-color: #2ecc71;
    --background-color: #f4f4f4;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --light-shade: #F4F4F4;

    /* TEXT/FONT VARIABLES */
    --text-color: #5B5B5B;
    --text-semi-light: #ADABAB;
    --heading-color: #2c3e50;
    --link-color: #2980b9;
    --link-hover-color: #3498db;
    --font-size: 16px;
    --font-family: 'Arial', sans-serif;
    --text-align: left;
    --text-decoration: none;
    --font-weight: normal;
    --font-style: normal;
    --text-transform: none;
    --text-line-height: 1.5;

    /* OTHER VARIABLES */
    --border-radius: 5px;
    --transition: all 0.3s ease;
    --shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

    /* SPACING VARIABLES */
    --padding: 1rem;
    --margin: 1rem;
    --safe-padding: 5px 1%;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

p {
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.primary-button {
    border: none;
    background: none;
    cursor: pointer;
}

.secondary-button {
    border: none;
    background: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 20px;
    border-radius: 5px;
    color: var(--pure-white);
    font-size: 18px;
    transition: all 0.5s ease;
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.btn-icon img {
    filter: brightness(10);
    transition: all 0.5s ease;
}

.secondary-button:hover .btn-icon img {
    filter: unset;
    transition: all 0.5s ease;
}

.secondary-button:hover {
    background-color: var(--pure-black);
    color: var(--pure-white);
}

input, textarea {
    /* border: none; */
    outline: none;
    padding: 0.5rem;
    font-size: 1rem;
}

select {
    border: none;
    outline: none;
    padding: 0.5rem;
    font-size: 1rem;
}

/* Add any additional global styles here */
.site-section {
    /* margin: var(--margin); */
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.site-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: var(--safe-padding);
}

/* CUSTOM SELECT OPTION */
.pd-dropdown {
    position: relative;
    width: 200px;
    font-family: Arial, sans-serif;
    cursor: pointer;
  }
  
  .pd-dropdown-selected {
    /* width: 100%; */
    padding: 5px 0;
    /* border: 1px solid #ccc; */
    border-radius: 4px;
  }
  
  .pd-dropdown-options {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50px;
    width: 100%;
    border: 1px solid #ccc;
    border-top: none;
    background: white;
    display: none;
    z-index: 1000;
}
  
  .pd-dropdown-options li {
    padding: 10px;
    transition: background 0.3s;
  }
  
  .pd-dropdown-options li:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
  }

  .select-location {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
}

.selected-option,
.pd-dropdown-options li {
    display: flex;
    gap: 5px;
    align-items: center;
}

.selected-option {
    padding-right: 10px;
}