/* Store Locator Section */
.store-locator {
 
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.header-section {
    margin-top: 300px;
    text-align: center;
    padding: 40px 0;
}

.header-section h1 {
    font-size: 36px;
    color: #1d1d1b;
    margin-bottom: 10px;
}

.header-section p {
    font-size: 18px;
    color: #555;
}

.map-container {
    margin-bottom: 40px;
    border-radius: 8px;
    overflow: hidden;
}

.store-info {
    text-align: center;
    margin-bottom: 40px;
}

.store-info h2 {
    font-size: 28px;
    color: #1d1d1b;
    margin-bottom: 30px;
}

.store-info p {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
}

.store-info .btn-directions {
    background-color: #00754a;
    color: white;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.store-info .btn-directions:hover {
    background-color: #005437;
}
@media (max-width: 768px) {
  .header-section {
    margin-top: 10%;
    padding: 30px 0;
  }

  .header-section h1 {
    font-size: 28px;
  }

  .header-section p {
    font-size: 16px;
  }

  .store-info h2 {
    font-size: 22px;
  }

  .store-info p {
    font-size: 16px;
    padding: 0 10px;
  }

  .store-info .btn-directions {
    padding: 12px 24px;
    font-size: 15px;
  }

  .map-container iframe {
    width: 100%;
    height: 300px;
  }
}

@media (max-width: 480px) {
  .header-section h1 {
    font-size: 22px;
  }

  .header-section p,
  .store-info p {
    font-size: 14px;
  }

  .store-info h2 {
    font-size: 20px;
  }

  .store-info .btn-directions {
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    border-radius: 6px;
  }

  .map-container iframe {
    height: 250px;
  }
}

