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

:root {
  --primary-color: #8b6f47;
  --secondary-color: #a68a64;
  --accent-color: #d4a574;
  --tertiary-color: #6b5744;
  --success-color: #48bb78;
  --text-dark: #2d3748;
  --text-light: #718096;
  --background-light: #faf8f5;
  --background-white: #ffffff;
  --border-color: #e2e8f0;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--background-white);
}

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

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
  box-shadow: var(--shadow);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-logo h2 {
  color: var(--primary-color);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--accent-color);
}

.navbar.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar.scrolled .nav-link:hover {
  color: var(--primary-color);
}

.whatsapp-nav {
  background: var(--success-color);
  color: white !important;
  border-radius: 25px;
  padding: 0.5rem 1rem !important;
}

.whatsapp-nav:hover {
  background: #38a169;
  color: white !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--text-dark);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("images/banner.jpg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/placeholder.svg?height=1080&width=1920") center / cover;
  opacity: 0.2;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.cta-button:hover {
  background: white;
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.about-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #faf8f5 0%, #f5f1eb 100%);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.intro-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--primary-color);
}

.intro-box h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--text-light);
  font-weight: 500;
  margin: 0;
}

.about-text > p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  background: white;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: var(--shadow);
}

.benefits-box {
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  padding: 3rem;
  border-radius: 25px;
  box-shadow: var(--shadow-xl);
  color: white;
  position: relative;
  overflow: hidden;
}

.benefits-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.benefits-box h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  position: relative;
  z-index: 1;
}

.benefits-box h3 i {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 2rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.benefit-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.benefit-item:hover::before {
  left: 100%;
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.benefit-content h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.benefit-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.closing-box {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border-left: 5px solid var(--accent-color);
}

.closing-box p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.closing-box strong {
  color: var(--primary-color);
  font-weight: 700;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-image:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content {
  color: white;
  text-align: center;
}

.overlay-content i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.overlay-content p {
  font-size: 1.1rem;
  font-style: italic;
  margin: 0;
}

.areas-section {
  padding: 6rem 0;
  background: var(--background-white);
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.area-card {
  background: var(--background-white);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.area-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.area-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.area-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.area-question {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.area-card:hover .area-question {
  opacity: 1;
}

.area-question p {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
}

.tools-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #8b6f47 0%, #6b5744 100%);
  position: relative;
  overflow: hidden;
}

.tools-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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='%23ffffff' fill-opacity='0.05'%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");
  opacity: 0.3;
}

.tools-section .section-title {
  color: white;
}

.tools-section .section-title::after {
  background: white;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 4rem;
  font-weight: 400;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

.tool-card {
  background: white;
  border-radius: 25px;
  padding: 0;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border: 3px solid transparent;
}

.tool-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.tool-card:hover::before {
  transform: scaleX(1);
}

.tool-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
  border-color: var(--primary-color);
}

.tool-card.featured {
  border: 3px solid var(--accent-color);
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
}

.tool-card.featured::before {
  background: linear-gradient(90deg, #d4a574, #8b6f47);
}

.tool-header {
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  overflow: hidden;
}

.tool-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.tool-icon-large {
  width: 90px;
  height: 90px;
  background: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.tool-icon-large.secondary {
  color: #c17767;
}

.tool-icon-large.tertiary {
  color: #7a9d96;
}

.tool-card:hover .tool-icon-large {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tool-badge {
  background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tool-body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.tool-card h3 {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.tool-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.tool-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 111, 71, 0.1);
  color: var(--primary-color);
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(139, 111, 71, 0.2);
  transition: all 0.3s ease;
}

.tool-card:hover .feature-tag {
  background: rgba(139, 111, 71, 0.15);
  border-color: rgba(139, 111, 71, 0.3);
}

.feature-tag i {
  font-size: 0.85rem;
}

.tool-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
  color: white;
  padding: 1.3rem 1.8rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(139, 111, 71, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.tool-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.tool-button:hover::before {
  left: 100%;
}

.tool-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(139, 111, 71, 0.4);
}

.tool-button.secondary {
  background: linear-gradient(135deg, #c17767 0%, #a65d4f 100%);
  box-shadow: 0 10px 25px rgba(193, 119, 103, 0.3);
}

.tool-button.secondary:hover {
  box-shadow: 0 15px 40px rgba(193, 119, 103, 0.4);
}

.tool-button.tertiary {
  background: linear-gradient(135deg, #7a9d96 0%, #5a7d76 100%);
  box-shadow: 0 10px 25px rgba(122, 157, 150, 0.3);
}

.tool-button.tertiary:hover {
  box-shadow: 0 15px 40px rgba(122, 157, 150, 0.4);
}

.button-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button-content i {
  font-size: 1.4rem;
}

.button-arrow {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.tool-button:hover .button-arrow {
  transform: translateX(8px);
}

.quote-banner {
  padding: 4rem 0;
  background: linear-gradient(rgba(0, 0, 0, 0.253), rgba(0, 0, 0, 0.8)), url("images/quote-background.jpg") center /
    cover no-repeat;
  text-align: center;
  color: white;
  position: relative;
}

.quote-content blockquote {
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.quote-content cite {
  font-size: 1.2rem;
  opacity: 0.8;
}

.whatsapp-quote-btn {
  display: inline-block;
  background: transparent;
  color: white;
  border: 2px solid white;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  margin-top: 2rem;
}

.whatsapp-quote-btn:hover {
  background: white;
  color: var(--success-color);
  transform: translateY(-2px);
}

.whatsapp-quote-btn i {
  margin-right: 0.5rem;
}

.footer {
  background: var(--text-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-section p {
  color: #a0aec0;
  line-height: 1.6;
}

.footer-list {
  list-style: none;
  padding: 0;
}

.footer-list li {
  color: #a0aec0;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.payment-methods {
  display: flex;
  gap: 1rem;
  font-size: 2rem;
  color: #a0aec0;
}

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

.social-links a {
  color: #a0aec0;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
  color: #a0aec0;
}

.whatsapp-widget {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
}

.whatsapp-widget a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: var(--success-color);
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.whatsapp-widget a:hover {
  transform: scale(1.1);
  background: #38a169;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top: 4px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 2rem;
}

.loading-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.loading-content p {
  font-size: 1.1rem;
  opacity: 0.8;
  font-weight: 500;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    width: 100%;
    height: 100vh;
    text-align: center;
    transition: left 0.3s ease;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding-top: 6rem;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-item {
    width: 100%;
    padding: 0;
  }

  .nav-menu .nav-link {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: 0;
    margin: 0;
    transition: all 0.3s ease;
    display: block;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-menu .nav-link:hover {
    background: var(--primary-color);
    color: white;
  }

  .whatsapp-nav {
    background: var(--success-color) !important;
    color: white !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }

  .whatsapp-nav:hover {
    background: #38a169 !important;
    color: white !important;
  }

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

  .hero p {
    font-size: 1.1rem;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-image {
    position: relative;
    top: 0;
    order: -1;
  }

  .about-image img {
    height: 300px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.8rem;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr;
  }

  .quote-content blockquote {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .payment-methods,
  .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .tool-card {
    padding: 2rem;
  }

  .tool-icon-large {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .quote-content blockquote {
    font-size: 1.3rem;
  }
}
