/* Custom styles for RealEstateHub */

/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --primary-50: #f0fdf4;
  --primary-100: #dcfce7;
  --primary-200: #bbf7d0;
  --primary-300: #86efac;
  --primary-400: #4ade80;
  --primary-500: #22c55e;
  --primary-600: #16a34a;
  --primary-700: #15803d;
  --primary-800: #166534;
  --primary-900: #14532d;

  --secondary-50: #fff7ed;
  --secondary-100: #ffedd5;
  --secondary-200: #fed7aa;
  --secondary-300: #fdba74;
  --secondary-400: #fb923c;
  --secondary-500: #f97316;
  --secondary-600: #ea580c;
  --secondary-700: #c2410c;
  --secondary-800: #9a3412;
  --secondary-900: #7c2d12;

  --dark-50: #f8fafc;
  --dark-100: #f1f5f9;
  --dark-200: #e2e8f0;
  --dark-300: #cbd5e1;
  --dark-400: #94a3b8;
  --dark-500: #64748b;
  --dark-600: #475569;
  --dark-700: #334155;
  --dark-800: #1e293b;
  --dark-900: #0f172a;
}

/* Base styles */
body {
  font-family: "Poppins", sans-serif;
  color: var(--dark-700);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.font-serif {
  font-family: "Playfair Display", serif;
}

/* Header and Navigation */
.header {
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.logo {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
}

.nav-link {
  display: inline-block;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark-600);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-600);
  background-color: var(--primary-50);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background-color: var(--primary-500);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-weight: 500;
  color: var(--dark-600);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  color: var(--primary-600);
  background-color: var(--primary-50);
}

.mobile-dropdown-content {
  border-left: 2px solid var(--primary-200);
}

/* Utility classes */
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Form styles */
input,
select,
textarea {
  outline: none;
  transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.form-input {
  border-radius: 0.5rem;
  border: 1px solid var(--dark-200);
  padding: 0.75rem 1rem;
  width: 100%;
  background-color: white;
}

/* Form input text color fixes */
.form-input {
  color: var(--dark-700);
}

.form-input::placeholder {
  color: var(--dark-400);
}

select.form-input option {
  color: var(--dark-700);
}

/* Ensure form labels are visible */
label {
  color: var(--dark-700);
}

/* Ensure select options are visible */
select option {
  background-color: white;
  color: var(--dark-700);
}

.form-input:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

.btn-primary {
  background-color: var(--primary-600);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--primary-700);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-secondary {
  background-color: var(--secondary-500);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: var(--secondary-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-600);
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-600);
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.btn-outline:hover {
  background-color: var(--primary-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Enhance button contrast */
.btn-primary {
  font-weight: 600;
}

.btn-secondary {
  font-weight: 600;
}

.btn-outline {
  font-weight: 600;
}

/* Ensure white text on colored backgrounds is visible */
.bg-primary-600,
.bg-primary-700,
.bg-secondary-500,
.bg-secondary-600 {
  color: white;
  font-weight: 500;
}

/* Ensure colored text on white backgrounds is visible */
.text-primary-700,
.text-secondary-700 {
  font-weight: 500;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-100);
}

::-webkit-scrollbar-thumb {
  background: var(--primary-400);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-500);
}

/* Hero section styles */
.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  color: white;
  padding: 8rem 0;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(22, 101, 52, 0.9) 0%,
    rgba(22, 101, 52, 0.7) 50%,
    rgba(249, 115, 22, 0.4) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-search-form {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Property card styles */
.property-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 1rem;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.property-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.property-card .property-image {
  height: 220px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}

.property-card:hover .property-image {
  transform: scale(1.05);
}

.property-card .property-price {
  color: var(--primary-600);
  font-weight: 700;
  font-size: 1.25rem;
}

.property-card .property-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--secondary-500);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  z-index: 10;
}

.property-card .property-favorite {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: white;
  color: var(--dark-400);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.property-card .property-favorite:hover {
  transform: scale(1.1);
}

.property-card .property-details {
  padding: 1.5rem;
}

.property-card .property-title {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--dark-800);
}

.property-card .property-location {
  color: var(--dark-500);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.property-card .property-location svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
}

.property-card .property-features {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--dark-200);
  color: var(--dark-600);
  font-size: 0.875rem;
}

.property-card .property-feature {
  display: flex;
  align-items: center;
}

.property-card .property-feature svg {
  width: 1rem;
  height: 1rem;
  margin-right: 0.25rem;
  color: var(--primary-500);
}

/* Section styles */
.section {
  padding: 5rem 0;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--primary-500);
}

.section-title p {
  font-size: 1.125rem;
  color: var(--dark-500);
  max-width: 700px;
  margin: 0 auto;
}

/* Footer styles */
.footer {
  background-color: var(--dark-800);
  color: white;
  padding: 4rem 0 2rem;
}

.footer h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-500);
}

.footer a {
  color: var(--dark-300);
  transition: all 0.3s ease;
}

.footer a:hover {
  color: var(--primary-400);
}

.footer .social-icons {
  display: flex;
  gap: 1rem;
}

.footer .social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.footer .social-icons a:hover {
  background-color: var(--primary-600);
  transform: translateY(-3px);
}

.footer .newsletter-form {
  display: flex;
  margin-top: 1rem;
}

.footer .newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
  border: none;
}

.footer .newsletter-form button {
  background-color: var(--primary-600);
  color: white;
  padding: 0.75rem 1rem;
  border-radius: 0 0.5rem 0.5rem 0;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer .newsletter-form button:hover {
  background-color: var(--primary-700);
}

.footer .copyright {
  text-align: center;
  padding-top: 2rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dark-400);
  font-size: 0.875rem;
}

/* Feature box styles */
.feature-box {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-box .feature-icon {
  width: 4rem;
  height: 4rem;
  background-color: var(--primary-100);
  color: var(--primary-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-box .feature-icon svg {
  width: 2rem;
  height: 2rem;
}

.feature-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark-800);
}

.feature-box p {
  color: var(--dark-500);
}

/* Testimonial styles */
.testimonial {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 4rem;
  font-family: "Playfair Display", serif;
  color: var(--primary-200);
  line-height: 1;
  z-index: 0;
  opacity: 0.5;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--dark-600);
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-image {
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  overflow: hidden;
  margin-right: 1rem;
}

.testimonial-author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-weight: 600;
  color: var(--dark-800);
  margin-bottom: 0.25rem;
}

.testimonial-author-info p {
  font-size: 0.875rem;
  color: var(--dark-500);
}

/* Counter section styles */
.counters-section {
  background-color: var(--primary-700);
  color: white;
  padding: 4rem 0;
}

.counter-box {
  text-align: center;
}

.counter-box .counter {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Montserrat", sans-serif;
}

.counter-box p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Call to action styles */
.cta-section {
  background-color: var(--primary-50);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-100);
  border-radius: 9999px;
  transform: translate(150px, -150px);
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background-color: var(--primary-100);
  border-radius: 9999px;
  transform: translate(-100px, 100px);
  z-index: 0;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-800);
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.125rem;
  color: var(--dark-600);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Blog styles */
.blog-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.blog-card-image {
  height: 200px;
  overflow: hidden;
}

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

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-date {
  font-size: 0.875rem;
  color: var(--dark-500);
  margin-bottom: 0.5rem;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--dark-600);
  margin-bottom: 1.5rem;
}

.blog-card-link {
  color: var(--primary-600);
  font-weight: 500;
  display: flex;
  align-items: center;
}

.blog-card-link svg {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link svg {
  transform: translateX(4px);
}

/* About page styles */
.about-hero {
  background-color: var(--primary-700);
  color: white;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background-color: var(--primary-600);
  border-radius: 9999px;
  transform: translate(200px, -200px);
  opacity: 0.3;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background-color: var(--primary-800);
  border-radius: 9999px;
  transform: translate(-150px, 150px);
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.about-hero-content p {
  font-size: 1.25rem;
  opacity: 0.9;
}

.team-member-card {
  background-color: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.team-member-image {
  height: 300px;
  overflow: hidden;
}

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

.team-member-card:hover .team-member-image img {
  transform: scale(1.05);
}

.team-member-info {
  padding: 1.5rem;
  text-align: center;
}

.team-member-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 0.25rem;
}

.team-member-position {
  color: var(--primary-600);
  font-weight: 500;
  margin-bottom: 1rem;
}

.team-member-bio {
  color: var(--dark-600);
  margin-bottom: 1.5rem;
}

.team-member-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}

.team-member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: var(--dark-100);
  color: var(--dark-600);
  transition: all 0.3s ease;
}

.team-member-social a:hover {
  background-color: var(--primary-600);
  color: white;
  transform: translateY(-3px);
}

/* Contact page styles */
.contact-info-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.contact-info-icon {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary-100);
  color: var(--primary-600);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.contact-info-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-info-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 0.75rem;
}

.contact-info-content {
  color: var(--dark-600);
}

.contact-form {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark-800);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--dark-200);
}

.contact-map {
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

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

.animate-fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

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

.animate-slide-up {
  animation: slideUp 0.5s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

.shake-animation {
  animation: shake 0.5s ease-in-out;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
  }

  .section-title h2 {
    font-size: 2.25rem;
  }

  .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .hero-section p {
    font-size: 1.125rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-section {
    padding: 5rem 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title h2 {
    font-size: 1.75rem;
  }

  .cta-content h2 {
    font-size: 1.75rem;
  }
}

