body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
  background-color: #1a1a1a;
}

.navbar {
  background: #f9f9f9;
  padding: 10px 0;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
  height: auto;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
}
@media (max-width: 768px) {
  .navbar .container .nav-links {
    display: none;
  }
  .navbar .container .hamburger {
    display: block;
    cursor: pointer;
  }
  .navbar .container .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background: #000;
    transition: all 0.3s ease;
  }
}
.navbar .logo img {
  height: 95px;
}
.navbar nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .navbar nav ul {
    display: none;
  }
}
.navbar nav ul li {
  position: relative;
  text-wrap: nowrap;
}
.navbar nav ul li p {
  cursor: pointer;
}
.navbar nav ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
}
.navbar nav ul li a:hover {
  text-decoration: underline;
}
.navbar nav ul li a button {
  width: 71px;
  height: 41px;
  background-color: #ff6347;
  color: white;
  cursor: pointer;
  border: outset 3px #ff7f50;
}
.navbar nav ul li a button:hover {
  background-color: #ff7f50;
}
.navbar nav ul li.dropdown p {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px 15px;
  font-size: 1rem;
}
.navbar nav ul li.dropdown p:hover {
  text-decoration: underline;
}
.navbar nav ul li.dropdown:hover .dropdown-menu {
  display: block;
}
.navbar nav ul li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.navbar nav ul li.dropdown .dropdown-menu li a {
  padding: 10px 15px;
  width: 200px;
}
.navbar nav ul li.dropdown .dropdown-menu li a:hover {
  background-color: #f0f0f0;
}
.navbar .social-icons {
  display: flex;
}
.navbar .social-icons a {
  margin: 0 10px;
}
.navbar .social-icons a img {
  height: 37px;
}
@media (max-width: 768px) {
  .navbar .social-icons {
    display: none;
  }
}
@media (min-width: 769px) and (max-width: 940px) {
  .navbar .social-icons {
    flex-direction: column;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 250px;
  background: #f9f9f9;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.6s ease-in-out;
  color: #000;
}
.mobile-menu ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  padding-top: 50px;
}
.mobile-menu ul li {
  margin: 15px 0;
}
.mobile-menu ul li a {
  color: #000;
  text-decoration: none;
  display: block;
  padding: 10px;
}
.mobile-menu ul li a:hover {
  text-decoration: underline;
}
.mobile-menu ul li a button {
  width: 71px;
  height: 41px;
  background-color: #ff6347;
  color: white;
  cursor: pointer;
  border: outset 3px #ff7f50;
}
.mobile-menu ul li a button:hover {
  background-color: #ff7f50;
}
.mobile-menu ul .dropdown-hamburger .dropdown-toggle {
  cursor: pointer;
  padding: 10px;
  color: #000;
  font-size: 1rem;
}
.mobile-menu ul .dropdown-hamburger .dropdown-toggle:hover {
  text-decoration: underline;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu {
  display: none;
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li {
  margin: 10px 0;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li a {
  padding: 5px 10px;
  background: #e9e9e9;
}
.mobile-menu ul .dropdown-hamburger .dropdown-menu li a:hover {
  background: #d9d9d9;
}
.mobile-menu ul .dropdown-hamburger.open .dropdown-menu {
  display: block;
}
.mobile-menu.active {
  display: block;
  transform: translateX(0);
}
@media (min-width: 769px) {
  .mobile-menu.active {
    display: none;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none;
  }
}

.footer {
  background-color: #333;
  color: #f9f9f9;
  padding: 20px 0;
  text-align: center;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  .footer .footer-content {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
  }
}
.footer .footer-content .footer-column {
  margin-bottom: 20px;
}
.footer .footer-content .footer-column h4 {
  color: #f39c12;
  margin-bottom: 10px;
}
.footer .footer-content .footer-column .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-content .footer-column .footer-links li {
  margin: 5px 0;
}
.footer .footer-content .footer-column .footer-links li a {
  color: #f9f9f9;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-content .footer-column .footer-links li a:hover {
  color: #f39c12;
}
@media (min-width: 769px) {
  .footer .footer-content .footer-column .footer-links {
    display: flex;
    flex-direction: row;
  }
  .footer .footer-content .footer-column .footer-links li {
    margin: 0 15px;
  }
}
.footer .footer-content .footer-column .footer-social-icons {
  display: flex;
  justify-content: center;
}
.footer .footer-content .footer-column .footer-social-icons a {
  margin: 0 10px;
  display: inline-block;
  transition: transform 0.3s;
}
.footer .footer-content .footer-column .footer-social-icons a:hover {
  transform: scale(1.1);
}
.footer .footer-content .footer-column .footer-social-icons a img {
  width: 40px;
  height: 40px;
}
.footer .footer-copyright {
  margin-top: 20px;
}
.footer .footer-copyright a {
  color: #f39c12;
  text-decoration: none;
  transition: color 0.3s;
}
.footer .footer-copyright a:hover {
  color: #fff;
}
.footer .footer-copyright p {
  font-size: 0.8rem;
}

.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px;
  background: url("/assets/images/line-graphic.jpg");
  background-size: cover;
  background-position: left;
}

h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #ff6347;
}

p {
  color: white;
  font-size: 1.5rem;
}

.contact-form {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 800px;
  background-color: #222;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

form {
  display: flex;
  flex-direction: column;
  width: 48%;
}

form input, form textarea {
  background-color: #333;
  border: none;
  margin-bottom: 10px;
  padding: 15px;
  color: #fff;
  border-radius: 4px;
}

form input::-moz-placeholder, form textarea::-moz-placeholder {
  color: #999;
}

form input::placeholder, form textarea::placeholder {
  color: #999;
}

form button {
  background-color: #ff6347;
  border: none;
  padding: 15px;
  color: #fff;
  font-size: 1em;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

form button:hover {
  background-color: #ff7f50;
}

.contact-info {
  width: 48%;
}

.contact-info p {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: white;
  font-size: 1rem;
}

.contact-icon {
  margin-right: 10px;
}

.social-media {
  display: flex;
  justify-content: space-between;
  margin: 20px 0;
  border-top: 1px solid #f9f9f9;
  padding: 25px;
}

.social-media a {
  color: #fff;
  font-size: 1.5em;
  transition: color 0.3s;
}

.social-media a:hover {
  color: #007bff;
}

.footer-text {
  font-size: 0.8em;
  color: #666;
  text-align: center;
}

@media (max-width: 480px) {
  .contact-form {
    flex-direction: column;
  }
  .contact-form .contact-info, .contact-form form {
    width: 100%;
  }
}
.location-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  max-width: 1200px;
  margin: 50px auto;
  color: #fff;
  border: 1px solid #ff6347;
}
.location-section .location-info {
  max-width: 45%;
}
.location-section .location-info h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #ff6347;
}
.location-section .location-info p {
  margin: 5px 0;
  font-size: 1.2rem;
  color: #ff6347;
}
.location-section .location-info a {
  display: block;
  margin: 5px 0;
  text-decoration: none;
  font-size: 1.2rem;
  color: #fff;
}
.location-section .location-info a.address-link {
  margin-bottom: 25px;
  text-decoration: underline;
  text-decoration-color: #ff6347;
}
.location-section .location-info .hours {
  margin-top: 10px;
}
.location-section .location-info .hours .hours-label {
  margin-top: 25px;
  color: #ff6347;
}
.location-section .location-info .hours p {
  font-size: 1.2rem;
  color: #fff;
}
.location-section .get-directions-btn {
  display: inline-block;
  width: 100%;
  padding: 10px 20px;
  background-color: #ff6347;
  text-decoration: none;
  border-radius: 5px;
  font-family: "Sans Serif Font", sans-serif;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 1.5rem;
  margin-top: 15px;
}
.location-section .get-directions-btn:hover {
  background-color: #e09000;
}
.location-section .get-directions-btn a {
  color: white;
}
.location-section .location-map {
  max-width: 45%;
  text-align: center;
}
.location-section .location-map iframe {
  width: 100%;
  height: 450px;
  border: 0;
}
.location-section .find-more-stores {
  display: block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}
@media (max-width: 480px) {
  .location-section {
    flex-direction: column;
    justify-content: center;
  }
  .location-section .location-info, .location-section .location-map {
    max-width: 70%;
    padding: 0;
  }
  .location-section .location-map {
    margin-top: 20px;
  }
}

.faq-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.faq-section h1 {
  text-align: center;
  color: #ff6347;
  margin-bottom: 20px;
}

.faq-accordion {
  background: url("../assets/images/line-graphic.jpg");
  background-size: cover;
}
.faq-accordion .faq-item {
  border-bottom: 1px solid #e09000;
}
.faq-accordion .faq-item:last-child {
  border-bottom: none;
}
.faq-accordion .faq-item .faq-question {
  width: 100%;
  padding: 15px;
  text-align: left;
  border: none;
  background-color: #333;
  color: #e09000;
  cursor: pointer;
  transition: background-color 0.3s;
  font-size: 1.5rem;
}
.faq-accordion .faq-item .faq-question:hover {
  background-color: rgba(224, 146, 0, 0.4235294118);
}
.faq-accordion .faq-item .faq-question .icon {
  color: #fff;
}
.faq-accordion .faq-item .faq-answer {
  overflow: hidden;
  padding: 0 15px;
  background-color: #333;
  border-top: 1px solid #e09000;
  max-height: 0;
  transition: max-height 0.5s ease, padding 0.5s ease;
}
.faq-accordion .faq-item .faq-answer p {
  font-size: 1.2rem;
  margin: 0;
}
.faq-accordion .active .faq-answer {
  max-height: auto;
  display: block;
  padding: 15px;
}/*# sourceMappingURL=contact.css.map */