body {
  margin: 0;
  font-family: "Arial", sans-serif;
  background-color: #ecf0f1;
  color: #2c3e50;
}

.navbar {
  background: linear-gradient(to right, #e0e0e0, #f7f7f7);
  height: 100px;
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
.navbar .navbar-brand img {
  max-height: 80px;
}
.navbar .nav-link {
  font-weight: bold;
  color: #555;
  transition: color 0.3s;
}
.navbar .nav-link:hover {
  color: #f39c12;
}
.navbar .btn-orange {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 5px 15px;
  border-radius: 25px;
}
.navbar .btn-orange:hover {
  background-color: #c87f0a;
}
.navbar .dropdown-menu {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.navbar .dropdown-menu .dropdown-item {
  color: #333;
}
.navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f39c12;
  color: #fff;
}

.carousel .carousel-item {
  height: 80vh;
  background-size: cover;
  background-position: center;
}
.carousel .carousel-item img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.carousel .carousel-caption {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
}
.carousel .carousel-caption h1 {
  font-size: 2.5rem;
  color: #ecf0f1;
}
.carousel .carousel-caption p {
  font-size: 1.2rem;
  color: white;
}
.carousel .carousel-caption .btn {
  margin-top: 10px;
  background-color: #3498db;
  border: none;
}
.carousel .carousel-caption .btn:hover {
  background-color: #217dbb;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(100%);
}

.welcome-section {
  background-color: #f7f7f7;
}
.welcome-section h2 {
  color: #f39c12;
  font-size: 1.75rem;
  font-weight: bold;
}
.welcome-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}
.welcome-section img {
  border: 3px solid #f39c12;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.what-we-do {
  background-color: #f9f9f9;
}
.what-we-do h2 {
  color: #f39c12;
  font-weight: bold;
}
.what-we-do .card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.what-we-do .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.what-we-do .card i {
  color: #f39c12;
}
.what-we-do .card h4 {
  color: #f39c12;
  font-size: 1.5rem;
}
.what-we-do .card p {
  font-size: 1rem;
  color: #333;
}
.what-we-do .card .btn-orange {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 10px 20px;
  width: 40%;
  margin-right: auto;
  margin-left: auto;
  border-radius: 15px;
}
.what-we-do .card .btn-orange:hover {
  background-color: #c87f0a;
}

.footer {
  background-color: #222;
  color: #bbb;
}
.footer h5 {
  color: #f39c12;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}
.footer a {
  color: inherit;
  text-decoration: none;
}
.footer a:hover {
  color: #f39c12;
}
.footer ul {
  padding: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.footer ul li i {
  margin-right: 0.5rem;
  color: #f39c12;
}
.footer .social-icons a {
  color: #f39c12;
  margin: 0 10px;
}
.footer .social-icons a:hover {
  color: #f5b043;
}
.footer hr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.about-us-banner {
  position: relative;
  height: 400px;
}
.about-us-banner .banner-image img {
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.about-us-banner .banner-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.about-us-banner .banner-text h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
}
.about-us-banner .banner-text p {
  font-size: 1.25rem;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.about-us {
  background-color: #f8f9fa;
}
.about-us h2 {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
}
.about-us .registration-number {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}
.about-us p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.about-us p:not(:last-child) {
  margin-bottom: 1rem;
}
.about-us img {
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mission-vision-values {
  background-color: #f8f9fa;
  padding: 3rem 1rem;
}
.mission-vision-values h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.mission-vision-values .icon-box {
  font-size: 3rem;
  color: #f39c12;
}
.mission-vision-values h4 {
  font-size: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mission-vision-values p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

.our-team {
  background-color: #f8f9fa;
}
.our-team h2 {
  font-size: 2.5rem;
  font-weight: bold;
}
.our-team .team-member .member-image {
  overflow: hidden;
  border: 5px solid #f39c12;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  margin: 0 auto;
  position: relative;
}
.our-team .team-member .member-image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.our-team .team-member .member-image:hover img {
  transform: scale(1.1);
}
.our-team .team-member h4 {
  font-size: 1.5rem;
  font-weight: bold;
}
.our-team .team-member p {
  font-size: 1rem;
  color: #555;
}

.banner-section {
  position: relative;
  background: url("../images/mind-reading-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.mind-reading-classes {
  background-color: #f8f9fa;
}
.mind-reading-classes h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
}
.mind-reading-classes h3, .mind-reading-classes h4 {
  color: #f39c12;
}
.mind-reading-classes p {
  font-size: 1.1rem;
  color: #555;
}
.mind-reading-classes ul {
  padding-left: 1.5rem;
}
.mind-reading-classes ul li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}
.mind-reading-classes ul li i {
  margin-right: 0.5rem;
}
.mind-reading-classes .btn-orange {
  background-color: #f39c12;
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  transition: background-color 0.3s ease-in-out;
}
.mind-reading-classes .btn-orange:hover {
  background-color: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/computer-classes-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.computer-classes {
  padding: 60px 0;
  background: #f8f9fa;
}
.computer-classes .section-title {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.computer-classes p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.computer-classes img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.banner-section {
  position: relative;
  background: url("../images/old-age-ashram-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.old-age-ashram {
  padding: 60px 0;
  background: #f8f9fa;
}
.old-age-ashram .section-title {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.old-age-ashram p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.old-age-ashram img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.old-age-ashram .btn-primary {
  background-color: #f39c12;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
  text-transform: uppercase;
}
.old-age-ashram .btn-primary:hover {
  background-color: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/healthcare-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.healthcare {
  padding: 60px 0;
  background: #f8f9fa;
}
.healthcare .section-title {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.healthcare p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.healthcare img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.healthcare .btn-primary {
  background-color: #f39c12;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
  text-transform: uppercase;
}
.healthcare .btn-primary:hover {
  background-color: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/empowering-lives-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.empowering-lives {
  padding: 60px 0;
  background: #f8f9fa;
}
.empowering-lives .section-title {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.empowering-lives p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.empowering-lives img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.empowering-lives .btn-primary {
  background-color: #f39c12;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
  text-transform: uppercase;
}
.empowering-lives .btn-primary:hover {
  background-color: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/ayurveda-yoga-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.ayurveda-yoga {
  padding: 60px 0;
  background: #f8f9fa;
}
.ayurveda-yoga .section-title {
  color: #f39c12;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.ayurveda-yoga p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.ayurveda-yoga img {
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.ayurveda-yoga .btn-primary {
  background-color: #f39c12;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  margin-top: 20px;
  text-transform: uppercase;
}
.ayurveda-yoga .btn-primary:hover {
  background-color: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/contact-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.contact-details p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}
.contact-details .section-title {
  color: #f39c12;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.enquiry-form .section-title {
  color: #f39c12;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.enquiry-form form input,
.enquiry-form form textarea {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  font-size: 1rem;
}
.enquiry-form form button {
  background: #f39c12;
  border: none;
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 5px;
  text-transform: uppercase;
}
.enquiry-form form button:hover {
  background: #c87f0a;
}

.banner-section {
  position: relative;
  background: url("../images/gallery-banner.jpg") no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.banner-section .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.banner-section .container {
  position: relative;
  z-index: 2;
}
.banner-section .banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #f39c12;
  text-transform: uppercase;
}
.banner-section .banner-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section .section-title {
  color: #f39c12;
  font-size: 2rem;
  margin-bottom: 20px;
}
.gallery-section .gallery-card {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
.gallery-section .gallery-card img {
  width: 100%;
  height: auto;
  display: block;
}
.gallery-section .gallery-card:hover {
  transform: scale(1.05);
}

.banner-section {
  position: relative;
  color: #fff;
}
.banner-section .banner-overlay {
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  width: 100%;
  text-align: center;
}
.banner-section .banner-overlay h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.donation-section h2 {
  color: #f39c12;
  font-size: 1.75rem;
  font-weight: bold;
}
.donation-section ul {
  list-style: none;
  padding: 0;
}
.donation-section ul li {
  font-size: 1rem;
  margin-bottom: 10px;
}
.donation-section ul li strong {
  color: #f39c12;
}
.donation-section img {
  border: 2px solid #f39c12;
  border-radius: 10px;
}
.donation-section p {
  font-size: 1rem;
  margin-bottom: 20px;
}

.menu-toggle {
  display: none;
  cursor: pointer;
}
.menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #333;
  margin: 5px auto;
  transition: 0.3s;
}

@media (max-width: 992px) {
  .nav-links {
    flex-direction: column;
    position: absolute;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
  }
  .nav-links li {
    text-align: center;
    width: 100%;
  }
  .nav-links li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
@media screen and (max-width: 768px) {
  .banner-section {
    height: 60vh;
  }
  .banner-section .banner-content {
    max-width: 90%;
  }
  .banner-section .banner-content h1 {
    font-size: 2rem;
  }
  .banner-section .banner-content p {
    font-size: 1rem;
  }
  .banner-section .banner-content .btn-banner {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }
  .image-container, .text-container {
    max-width: 100%;
  }
  .text-container {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .what-we-do-section {
    padding: 40px 0;
  }
  .what-we-do-section .card {
    padding: 15px;
  }
  .what-we-do-section .card .icon {
    font-size: 2.5rem;
  }
  .what-we-do-section .card .card-title {
    font-size: 1.25rem;
  }
  .what-we-do-section .card .card-text {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer .container {
    flex-direction: column;
    align-items: center;
  }
  .footer .footer-column {
    width: 100%;
  }
  .footer .social-links {
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .about-banner {
    height: 300px;
  }
  .about-banner .banner-content {
    max-width: 90%;
  }
  .about-banner .banner-content h1 {
    font-size: 2rem;
  }
  .about-banner .banner-content p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .about-banner {
    height: 250px;
  }
  .about-banner .banner-content {
    max-width: 95%;
  }
  .about-banner .banner-content h1 {
    font-size: 1.8rem;
  }
  .about-banner .banner-content p {
    font-size: 0.9rem;
  }
}
@media (max-width: 768px) {
  .about-section {
    padding: 40px 0;
  }
  .about-section h2 {
    font-size: 2rem;
  }
  .about-section .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-section .about-content .about-text p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .about-section {
    padding: 30px 0;
  }
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section .about-content .about-text p {
    font-size: 0.95rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .about-section {
    padding: 40px 10px;
  }
  .about-section .content-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .about-section .content-wrapper .content-box {
    width: 90%;
  }
}
@media (max-width: 480px) {
  .about-section .section-title {
    font-size: 1.8rem;
  }
  .about-section .content-box {
    padding: 20px;
  }
  .about-section .content-box h3 {
    font-size: 1.3rem;
  }
  .about-section .content-box p {
    font-size: 0.95rem;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .our-trustees {
    padding: 40px 10px;
  }
  .our-trustees h2 {
    font-size: 1.75rem;
  }
  .our-trustees .trustee-card {
    padding: 15px;
  }
  .our-trustees .trustee-card .trustee-img {
    width: 100px;
    height: 100px;
  }
  .our-trustees .trustee-card h5 {
    font-size: 1.1rem;
  }
  .our-trustees .trustee-card p {
    font-size: 0.9rem;
  }
}
@media (max-width: 480px) {
  .our-trustees h2 {
    font-size: 1.5rem;
  }
  .our-trustees .trustee-card {
    padding: 10px;
  }
  .our-trustees .trustee-card .trustee-img {
    width: 90px;
    height: 90px;
  }
  .our-trustees .trustee-card h5 {
    font-size: 1rem;
  }
  .our-trustees .trustee-card p {
    font-size: 0.85rem;
  }
}
@media (max-width: 768px) {
  .gallery-banner {
    height: 200px;
  }
  .gallery-banner h1 {
    font-size: 2rem;
  }
  .gallery-section {
    padding: 40px 10px;
  }
  .gallery-section h2 {
    font-size: 1.8rem;
  }
  .gallery-section .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .contact-banner {
    height: 200px;
  }
  .contact-banner h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .contact-banner {
    height: 150px;
  }
  .contact-banner h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 768px) {
  .banner-section {
    height: 300px;
    padding: 15px;
  }
  .banner-content h1 {
    font-size: 2rem;
  }
  .banner-content p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .banner-section {
    height: 250px;
    padding: 10px;
  }
  .banner-content h1 {
    font-size: 1.8rem;
  }
  .banner-content p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=styles.css.map */