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

body {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.4;
  font-size: 16px;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.site-header {
  text-align: center;
  padding: 30px 0 5px 0;
  background-color: #ffffff;
}

.site-header h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.site-header p {
  font-size: 1rem;
  color: #666;
}

.section {
  margin-bottom: 70px;
}

.text-left { text-align: left; }
.text-center { text-align: center; }

.section h2, h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  color: #222;
}

.section p {
  margin-bottom: 20px;
  color: #555;
}

.decorative-line {
  border: none;
  height: 6px;
  background-color: #e0e0e0;
  border-radius: 5px;
  margin: 0 auto 40px;
}

.label-divider {
  text-align: center;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888;
  margin: 20px 0 30px 0;
}

.ad-space {
  width: 100%;
  margin: 30px 0;
  text-align: center;
  margin: 0 auto 60px;
}

.ad-space div {
  padding: 20px;
  color: #555;
  font-weight: 500;
}

a {
  color: #1a73e8;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { text-decoration: underline; }

ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}
ul li { margin-bottom: 10px; line-height: 1.5; }

.btn {
  display: inline-block;
  padding: 15px 15px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary {
  background-color: #006699;
  color: #fff;
  border: none;
}

.btn-primary:hover { background-color: #0099CC; }

.btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border: none;
}

.btn-secondary:hover { background-color: #5a6268; }

.image-container {
  text-align: center;
}
.image-container img.small {
  width: 120px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
.image-container img.medium {
  width: 200px;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 40px;
}

.image-container img.large {
  width: 80%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 40px auto 40px;
}

.phone-number {
  font-size: 16px;
  font-weight: 700;
  color: #007bff;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 30px 0;
  color: #777;
  font-size: 0.9rem;
}

.listing-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  gap: 20px;
}

.listing-row.two-per-row .listing-card {
  flex: 1 1 calc(50% - 20px);
}

.listing-row.center-cards { justify-content: center; }
.listing-row.left-cards { justify-content: flex-start; }

.listing-card {
  border: 4px solid #e0e0e0;
  padding: 20px;
  border-radius: 8px;
  background-color: #fff;
  transition: box-shadow 0.2s ease;
  text-align: left;
}

.listing-card a {
  font-weight: 600;
  color: #1a73e8;
}

.listing-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

@media (max-width: 768px) {
.listing-row.two-per-row .listing-card {
 flex: 1 1 100%;
}

.container { width: 95%; }
.phone-number { font-size: 5vw; }
}
}