.standard-blog-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.blog-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.blog-text {
  text-align: center;
}

.blog-main-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #222;
  font-family: 'Georgia', serif;
  margin-bottom: 1rem;
}

.blog-subtitle {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.blog-cta-btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background-color: #0077b6;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.blog-cta-btn:hover {
  background-color: #005f8a;
}

.blog-image-box {
  max-width: 600px;
  width: 100%;
}

.blog-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .blog-wrapper {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .blog-text {
    max-width: 50%;
  }

  .blog-image-box {
    max-width: 45%;
  }
}
























/* .pawnacottages-section */
.pawnacottages-section {
  padding: 4rem 2rem;
  background: linear-gradient(to right, #f5f7fa, #c3cfe2);
}

.pawnacottages-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.pawnacottages-text {
  flex: 1;
  min-width: 300px;
}

.pawnacottages-title {
  font-size: 2.2rem;
  color: #333;
  margin-bottom: 1rem;
  font-weight: bold;
}

.pawnacottages-description {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.pawnacottages-btn {
  display: inline-block;
  background: #2b6cb0;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.pawnacottages-btn:hover {
  background: #1a4e85;
}

.pawnacottages-image {
  flex: 1;
  min-width: 300px;
}

.pawnacottages-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
}

