body {
  margin: 0;
  font-family: Arial, sans-serif;
}

.jd-header {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  background: white;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.6em;
  font-weight: bold;
  margin-right: 20px;
}
.logo span {
  color: #f47920;
}

.location-dropdown {
  position: relative;
  margin-right: 15px;
}
.location-dropdown button {
  padding: 8px 12px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: pointer;
}
.location-dropdown .dropdown-content {
  display: none;
  position: absolute;
  background: white;
  top: 40px;
  left: 0;
  border: 1px solid #ccc;
  width: 200px;
  z-index: 10;
}
.location-dropdown .dropdown-content input {
  width: 100%;
  padding: 6px;
  border: none;
  border-bottom: 1px solid #eee;
}
.location-dropdown .dropdown-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 200px;
  overflow-y: auto;
}
.location-dropdown .dropdown-content ul li {
  padding: 8px;
  cursor: pointer;
}
.location-dropdown .dropdown-content ul li:hover {
  background: #f0f0f0;
}

.search-box {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 500px;
  margin-right: 15px;
  gap: 5px;
}
.search-box input {
  flex: 1;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
}
.search-box .mic,
.search-box .search {
  background: #ff6b00;
  border: none;
  padding: 0px;
  cursor: pointer;
}
.search-box .mic img,
.search-box .search img {
  width: 26px;
    height: 26px;
}

.language select {
  padding: 6px;
  border: 1px solid #ccc;
  margin-right: 15px;
}

.free-listing {
  display: flex;
  align-items: center;
  font-size: 0.9em;
  margin-right: 15px;
}
.free-listing .label {
  background: red;
  color: white;
  padding: 2px 4px;
  font-size: 0.7em;
  margin-right: 4px;
}

.notification img {
  width: 20px;
  margin-right: 15px;
  cursor: pointer;
}

.profile {
  position: relative;
}
.profile .circle {
  width: 30px;
  height: 30px;
  background: #c2185b;
  color: white;
  border-radius: 50%;
  text-align: center;
  line-height: 30px;
  font-weight: bold;
}
.profile .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: red;
  color: white;
  border-radius: 50%;
  font-size: 0.7em;
  padding: 2px 5px;
}

@media (max-width: 768px) {
  .jd-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .search-box {
    width: 100%;
    margin-top: 10px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  background: white;
}
.logo {
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
}
.logo span {
  color: #f47920;
}
.search-bar {
  display: flex;
  align-items: center;
}
.search-bar input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}
.search-bar button {
  background: #ff6b00;
  border: none;
  padding: 8px;
  border-radius: 0 4px 4px 0;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #0077d9;
  padding: 40px 20px;
  color: white;
}
.qr-section {
  text-align: center;
  margin: 20px;
}
.qr-section h2 {
  margin-bottom: 20px;
}
.qr-code {
  width: 150px;
  margin-bottom: 20px;
}
.download-link {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.download-link input {
  padding: 10px;
  border: none;
  border-radius: 4px 0 0 4px;
}
.download-link button {
  background: #005bbb;
  border: none;
  color: white;
  padding: 10px 15px;
  border-radius: 0 4px 4px 0;
}
.app-links img {
  width: 120px;
  margin: 5px;
}
.phone-mockup img {
  max-width: 300px;
  width: 100%;
    margin-bottom: 0px;
    border-radius: 30px;
  margin-left: 160px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
}

/* Base Styles */

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
}

/* Section Styles */
.local-search {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.local-search h2 {
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 700;
}

/* Features Section */
.features {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-card {
  background: #f1f1f1;
  border-radius: 12px;
  padding: 20px;
  width: 280px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card img {
  height: 60px;
  margin-bottom: 15px;
}

/* Card Backgrounds */
.feature-card.pink {
  background-color: #ffe6e6;
}
.feature-card.blue {
  background-color: #e6e6ff;
}
.feature-card.green {
  background-color: #e6ffef;
}

/* Description */
.description {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 16px;
  color: #444;
}
.description p {
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-card {
    width: 100%;
  }
  .description {
    padding: 0 10px;
  }
}
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
  padding: 20px;
}
.services h2 {
  text-align: center;
  margin-bottom: 40px;
}
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.service-box {
  background: white;
  border: 1px solid #eee;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  text-align: center;
}
.service-box img {
  width: 50px;
  margin-bottom: 15px;
}
.service-box h3 {
  margin-bottom: 10px;
}
.service-box p {
  font-size: 0.95em;
  line-height: 1.5;
}
@media(max-width: 768px) {
  .service-box {
    width: 100%;
  }
}
body {
  font-family: Arial, sans-serif;
  background: #f9f9f9;
}
footer {
  background: white;
  padding: 30px;
  text-align: center;
}
.social p {
  margin-bottom: 10px;
}
.icons img, .apps img {
  width: 32px;
  margin: 0 5px;
}
.collections p {
  margin: 20px 0 10px;
  font-weight: bold;
}
.collections .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.collections .links a {
  text-decoration: none;
  color: #0077d9;
}
.footer-links {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  color: #333;
}
@media (max-width: 600px) {
  .collections .links, .footer-links {
    flex-direction: column;
    align-items: center;
  }
}
.footjust {
  
  color: #666;
  border-radius: 20px;
}

