/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  color: #1a1a1a;
}

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

/* Header */
.header {
  background-color: #002366; /* Duke Blue */
  color: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: relative;
}

.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #cf0a2c; /* USA Red */
}

.buffalo-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url('images/buffalo-skyline.svg') repeat-x bottom;
  background-size: auto 60px;
  opacity: 0.15;
  z-index: 1;
}

.header .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 0;
  z-index: 2;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.logo-img {
  height: 80px;
  width: auto;
  background-color: white;
  border-radius: 6px;
  padding: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.nav a {
  color: #fff;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.nav a:hover, .nav a.active {
  color: #e0e0e0;
  background-color: rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 35, 102, 0.7), rgba(0, 35, 102, 0.7)), url('images/hero-background.jpg') no-repeat center center/cover;
  color: #fff;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: normal;
  margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInDown 1s ease-out;
  letter-spacing: -0.3px;
  line-height: 1.2;
  text-transform: none;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease-out 0.3s;
  animation-fill-mode: both;
}

.hero-buttons {
  animation: fadeIn 1s ease-out 0.6s;
  animation-fill-mode: both;
}

.hero-buttons .btn {
  margin: 10px;
  transition: all 0.4s ease;
}

/* Sections */
.about, .services, .rentals, .management, .testimonials, .contact, .sell-section {
  padding: 80px 20px;
}

/* Dynamic background patterns for sections */
.services {
  background: linear-gradient(to bottom, #ffffff, #f0f6ff);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(0, 35, 102, 0.05) 2px, transparent 2px);
  background-size: 30px 30px;
  z-index: 0;
}

.services .container {
  position: relative;
  z-index: 1;
}

.rentals {
  background-color: #fff;
  position: relative;
}

.rentals::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 35, 102, 0.03), transparent);
  pointer-events: none;
}

.testimonials {
  background: linear-gradient(135deg, #f5f9ff 0%, #edf5ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23002366' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.testimonials::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: url('images/testimonial-bg.jpg') no-repeat center center/cover;
  opacity: 0.04;
  z-index: 0;
  border-radius: 50%;
  transform: translate(100px, 100px);
}

.testimonials .testimonial-bg-1 {
  position: absolute;
  top: 50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: url('images/testimonial-bg-1.jpg') no-repeat center center/cover;
  opacity: 0.05;
  z-index: 0;
  border-radius: 20px;
  transform: rotate(-15deg);
}

.testimonials .testimonial-bg-2 {
  position: absolute;
  bottom: 100px;
  left: 30%;
  width: 200px;
  height: 200px;
  background: url('images/testimonial-bg-2.jpg') no-repeat center center/cover;
  opacity: 0.03;
  z-index: 0;
  border-radius: 10px;
  transform: rotate(10deg);
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 36px;
  color: #002366;
}

section p {
  margin-bottom: 20px;
  font-size: 18px;
}

/* About Section */
.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  margin-top: 30px;
}

.about-content {
  flex: 1 1 500px;
}

.about-image {
  flex: 1 1 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-image:hover {
  transform: translateY(-5px);
}

.about-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 35, 102, 0.8);
  color: white;
  padding: 10px 15px;
  font-size: 16px;
  text-align: center;
}

.about-highlights {
  list-style: none;
  margin: 25px 0;
}

.about-highlights li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.about-highlights i {
  color: #002366;
  margin-right: 10px;
  font-size: 20px;
}

/* Sell Your House Section */
.sell-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 30px;
}

.sell-content {
  flex: 1 1 500px;
}

.sell-image {
  flex: 1 1 350px;
  background: url('images/sell-house.jpg') no-repeat center center/cover;
  height: 350px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.sell-image:hover {
  transform: translateY(-5px);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 35, 102, 0.9), rgba(0, 35, 102, 0.7) 60%, transparent);
  color: white;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s ease;
}

.image-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.image-overlay p {
  margin-bottom: 0;
  font-size: 16px;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.sell-image:hover .image-overlay {
  padding-bottom: 30px;
}

.benefits-list {
  list-style: none;
  margin: 20px 0;
}

.benefits-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.benefits-list li i {
  color: #002366;
  margin-right: 10px;
}

/* Services Grid */
.services-grid, .service-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.service-cta-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 40px;
}

.service {
  flex: 1 1 300px;
  background-color: #f4f4f4;
  padding: 30px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.service::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 10px;
  height: 100%;
  background-color: #cf0a2c; /* USA Red */
  opacity: 0.7;
}

.service:hover {
  transform: translateY(-7px);
  box-shadow: 0 10px 20px rgba(0, 35, 102, 0.1);
  border-color: rgba(0, 35, 102, 0.05);
}

.service-icon {
  font-size: 40px;
  color: #002366;
  margin-bottom: 20px;
}

.service h3 {
  margin-bottom: 15px;
  color: #002366;
}

/* Rentals */
.rental-container {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.rental-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

/* Loading and error states */
.loading, .error {
  width: 100%;
  padding: 20px;
  text-align: center;
  font-size: 18px;
  color: #555;
}

.error {
  color: #e74c3c;
}

.rental {
  flex: 1 1 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07);
  background-color: #fff;
  transition: all 0.3s ease;
  margin: 0 auto;
  max-width: 350px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
}

.rental::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #cf0a2c; /* USA Red */
  z-index: 2;
}

.rental:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 35, 102, 0.1);
}

.rental-image {
  position: relative;
  height: 220px;
  background-color: #f4f4f4;
  overflow: hidden;
}

.rental-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.rental:hover .rental-image img {
  transform: scale(1.05);
}

.placeholder-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #777;
}

.placeholder-image i {
  font-size: 40px;
  margin-bottom: 10px;
}

.rented-tag {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #cf0a2c; /* USA Red */
  color: white;
  padding: 5px 15px;
  border-radius: 4px;
  font-weight: bold;
  z-index: 1;
}

.rental-details {
  padding: 20px;
}

.rental-details h3 {
  margin-bottom: 10px;
  color: #002366;
}

.rental-status {
  font-weight: bold;
  color: #002366;
}

.rental-info {
  text-align: center;
  margin-top: 30px;
}

/* Property Management Section */
.management {
  background: linear-gradient(to right, #f4f8ff, #edf3ff);
  position: relative;
  overflow: hidden;
}

.management::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 35, 102, 0.01) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(0, 35, 102, 0.01) 1px, transparent 1px);
  background-size: 20px 20px;
  z-index: 0;
}

.management .container {
  position: relative;
  z-index: 1;
}

.management-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.management-content {
  flex: 1 1 500px;
}

.management-image {
  flex: 1 1 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.management-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.management-image:hover .management-img {
  transform: scale(1.03);
}

.management-list {
  list-style: none;
  margin: 20px 0;
}

.management-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.management-list li i {
  color: #002366;
  margin-right: 10px;
}

.management h3 {
  margin: 20px 0 10px;
  color: #002366;
}

/* Testimonials */
.testimonial-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: center;
  margin-bottom: 40px;
}

.testimonial {
  background-color: #f9f9f9;
  margin: 0 auto;
  padding: 35px;
  border-radius: 10px;
  max-width: 800px;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #cf0a2c; /* USA Red */
  transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 35, 102, 0.1);
}

.quote-icon {
  color: #002366;
  font-size: 24px;
  margin-bottom: 10px;
  opacity: 0.4;
  position: relative;
  z-index: 1;
}

.testimonial p {
  font-style: italic;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: bold;
  text-align: right;
  margin-top: 15px;
  color: #002366;
  position: relative;
  z-index: 1;
}

/* Contact Form */
.contact {
  background: linear-gradient(45deg, #e9f0ff 0%, #f2f7ff 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23002366' fill-opacity='0.03' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.contact .container {
  position: relative;
  z-index: 1;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

form {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto 40px;
  background-color: #fff;
  padding: 35px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}

form:focus-within {
  box-shadow: 0 10px 25px rgba(0, 35, 102, 0.1);
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

label {
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

input, textarea, button {
  padding: 12px;
  font-size: 16px;
}

input, textarea {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border-color 0.3s, box-shadow 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: #002366;
  box-shadow: 0 0 0 2px rgba(0, 35, 102, 0.1);
}

input.invalid, textarea.invalid {
  border-color: #e74c3c;
  background-color: #fff8f8;
}

input.valid, textarea.valid {
  border-color: #2ecc71;
  background-color: #f8fff8;
}

.error-message {
  display: none;
  color: #e74c3c;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 500;
  animation: fadeIn 0.3s ease;
}

.error-message.visible {
  display: block;
}

.form-status {
  text-align: center;
  margin-top: 20px;
  padding: 10px;
  border-radius: 5px;
  font-weight: 500;
  display: none;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button {
  background-color: #002366; /* Duke Blue */
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

button:hover {
  background-color: #0033a0;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.contact-item i {
  color: #002366;
  margin-right: 10px;
  font-size: 20px;
}

/* Footer */
.footer {
  background-color: #002366;
  color: #fff;
  padding: 40px 0 20px;
  margin-top: 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #cf0a2c; /* USA Red */
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-img {
  height: 100px;
  width: auto;
  background-color: white;
  border-radius: 5px;
  padding: 5px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  transition: opacity 0.3s;
}

.social-links a:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Buttons General */
.btn {
  display: inline-block;
  background-color: #002366;
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn:hover {
  background-color: #0033a0;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-submit {
  width: 100%;
  font-size: 18px;
}

/* Service Pages Styles */
.service-hero {
  background: linear-gradient(rgba(0, 35, 102, 0.8), rgba(0, 35, 102, 0.8)), url('images/hero-background.jpg') no-repeat center center/cover;
  padding: 80px 20px;
}

.service-details {
  background-color: #ffffff;
  padding: 60px 20px;
}

.service-details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.service-details-content {
  flex: 1 1 600px;
}

.service-details-sidebar {
  flex: 1 1 300px;
  background-color: #f4f8ff;
  padding: 30px;
  border-radius: 10px;
  position: sticky;
  top: 100px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 3px solid #cf0a2c; /* USA Red */
}

.service-details h2 {
  text-align: left;
  margin-bottom: 25px;
}

.service-details-sidebar h3 {
  margin-bottom: 20px;
  color: #002366;
}

.service-benefits {
  list-style: none;
  margin: 20px 0;
}

.service-benefits li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.service-benefits li i {
  color: #002366;
  margin-right: 10px;
  margin-top: 4px;
}

.service-cta {
  margin-top: 30px;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.service-cta h4 {
  margin-bottom: 15px;
  color: #002366;
}

.service-cta .btn {
  margin-top: 15px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  section h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 42px;
  }
  
  .hero p {
    font-size: 18px;
  }
  
  .footer-logo-img {
    height: 80px;
  }
}

@media (max-width: 991px) {
  .container {
    width: 95%;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero p {
    font-size: 16px;
  }
  
  section h2 {
    font-size: 28px;
  }
  
  .footer-logo-img {
    height: 70px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .rental {
    max-width: 300px;
  }
  
  .rental-image {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
  }
  
  .logo {
    margin-bottom: 15px;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #002366;
    padding: 10px 0;
    z-index: 10;
  }
  
  .nav.active {
    display: flex;
  }
  
  .menu-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  
  .hero {
    padding: 80px 20px;
  }
  
  .hero h1 {
    font-size: 30px;
  }
  
  .about-grid, .sell-grid, .management-grid {
    flex-direction: column;
  }
  
  .about-image, .management-image {
    order: -1;
  }
  
  .about-image, .sell-image {
    height: 250px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-links, .social-links {
    justify-content: center;
  }
  
  .contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
  
  .btn {
    padding: 10px 20px;
    width: 100%;
    font-size: 16px;
  }
  
  .hero-buttons .btn {
    margin: 5px 0;
  }
  
  .nav a {
    font-size: 16px;
    padding: 8px 10px;
    margin: 3px 5px;
  }
  
  .rental-details h3 {
    font-size: 18px;
  }
  
  .rental-details p {
    font-size: 14px;
  }
  
  .footer {
    padding: 30px 0 15px;
  }
  
  .footer-links {
    gap: 15px;
  }
  
  .footer-links a {
    font-size: 14px;
  }
  
  form {
    padding: 25px 20px;
  }
  
  input, textarea, button {
    padding: 10px;
    font-size: 14px;
  }
}