/* 沐发咨询网站样式 */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  --background: #f5f5f5;
  --foreground: #1e1f12;
  --card: #ffffff;
  --card-foreground: #1e1f12;
  --primary: #1a3a5c;
  --primary-foreground: #ffffff;
  --secondary: #f0f4f8;
  --secondary-foreground: #1e1f12;
  --muted: #f0f4f8;
  --muted-foreground: #6b7280;
  --accent: #f0f4f8;
  --accent-foreground: #1a3a5c;
  --border: #e5e7eb;
  --input: #e5e7eb;
  --ring: #1a3a5c;
  --radius: 0.375rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  line-height: 1.6;
  background: var(--background);
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--foreground);
  font-size: 1.125rem;
}

.logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
  background: var(--accent);
  color: var(--primary);
}

.nav-link svg {
  width: 1rem;
  height: 1rem;
  transition: transform 0.2s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Submenu */
.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.25rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}

.nav-item:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu-inner {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  min-width: 160px;
  padding: 0.5rem 0;
}

.submenu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  transition: all 0.2s;
}

.submenu a:hover,
.submenu a.active {
  background: var(--accent);
  color: var(--primary);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card);
  overflow-y: auto;
  padding: 1rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--foreground);
  border-radius: var(--radius);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--accent);
  color: var(--primary);
}

.mobile-submenu {
  padding-left: 1.5rem;
}

.mobile-submenu a {
  font-size: 0.875rem;
  font-weight: 400;
}

/* Main Content */
main {
  padding-top: 64px;
}

/* Page Header */
.page-header {
  padding: 4rem 0;
  background: var(--accent);
}

.page-header h1 {
  font-size: 2rem;
  color: var(--foreground);
}

.page-header p {
  margin-top: 0.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section-alt {
  background: var(--accent);
}

.section-title {
  font-size: 1.875rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-desc {
  text-align: center;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto 3rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(30, 31, 18, 0.9) 0%, rgba(30, 31, 18, 0.7) 50%, rgba(30, 31, 18, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.hero h1 {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.hero h1 span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 0.5rem;
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  max-width: 36rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}

.btn svg {
  width: 1rem;
  height: 1rem;
}

.btn-primary {
  background: var(--card);
  color: var(--foreground);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.btn-secondary {
  background: var(--primary);
  color: var(--primary-foreground);
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.2s;
}

.card:hover {
  border-color: var(--primary);
}

.card-image {
  position: relative;
  height: 12rem;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.card:hover .card-image img {
  transform: scale(1.05);
}

.card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30, 31, 18, 0.6), transparent);
}

.card-icon {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
}

.card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.card-content {
  padding: 1.5rem;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: gap 0.2s;
}

.card-link:hover {
  gap: 0.5rem;
}

.card-link svg {
  width: 1rem;
  height: 1rem;
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* Info Cards */
.info-card {
  text-align: center;
  padding: 1.5rem;
}

.info-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(26, 58, 92, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.info-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.info-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.info-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Service Cards */
.service-card {
  padding: 1.5rem;
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-card-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.service-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.service-card h3 {
  font-size: 1.25rem;
}

.service-card-subtitle {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  font-weight: 400;
}

.service-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.service-advantages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.service-advantage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.service-advantage svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  flex-shrink: 0;
}

.service-offerings {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.service-offering h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.service-offering h4 svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--primary);
}

.service-offering ul {
  list-style: none;
}

.service-offering li {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.service-offering li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: var(--primary);
  border-radius: 50%;
}

/* Industry Cards */
.industry-card {
  text-align: center;
  padding: 1.25rem;
}

.industry-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--accent);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  color: var(--primary);
}

.industry-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.industry-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.industry-card p {
  font-size: 0.75rem;
}

/* Mission/Vision Cards */
.mv-card {
  padding: 2rem;
}

.mv-card-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.mv-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-foreground);
  flex-shrink: 0;
}

.mv-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.mv-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.mv-card p {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

/* Value Cards */
.value-card {
  text-align: center;
  padding: 1.5rem;
}

.value-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(26, 58, 92, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.value-card-icon svg {
  width: 1.75rem;
  height: 1.75rem;
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Team Cards */
.team-card {
  overflow: hidden;
}

.team-card-image {
  aspect-ratio: 1;
  background: var(--muted);
  overflow: hidden;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-content {
  padding: 1.25rem;
}

.team-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.team-card-position {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.875rem;
}

/* Stats Cards */
.stat-card {
  text-align: center;
  padding: 1.5rem;
}

.stat-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.stat-card-value {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.stat-card-label {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Contact Cards */
.contact-card {
  text-align: center;
  padding: 1.5rem;
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(26, 58, 92, 0.1);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.contact-card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-card-content {
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-card-sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Quick Contact Cards */
.quick-contact-card {
  padding: 1.5rem;
}

.quick-contact-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.quick-contact-card p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.quick-contact-card .btn {
  width: 100%;
  justify-content: center;
}

/* Job Cards */
.job-card {
  padding: 1.5rem;
}

.job-card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.job-card h3 {
  font-size: 1.125rem;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.job-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.job-meta svg {
  width: 1rem;
  height: 1rem;
}

.job-details {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.job-details h4 {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.job-details ul {
  list-style: none;
  margin-bottom: 1rem;
}

.job-details li {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}

.job-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem;
  height: 0.25rem;
  background: var(--primary);
  border-radius: 50%;
}

.job-email {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.job-email svg {
  width: 1rem;
  height: 1rem;
}

/* Benefits Cards */
.benefit-card {
  padding: 1.25rem;
}

.benefit-card svg {
  width: 2rem;
  height: 2rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.benefit-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.875rem;
}

/* Two Column Layout */
.two-col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: center;
}

.two-col h2 {
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
}

.two-col p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.two-col-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.two-col-image img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: var(--primary);
  color: var(--primary-foreground);
  text-align: center;
}

.cta-section h2 {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.cta-section p {
  opacity: 0.8;
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-outline {
  border-color: var(--primary-foreground);
  color: var(--primary-foreground);
}

.cta-section .btn-outline:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 4rem 0 2rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid #333;
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo img {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
}

.footer-logo span {
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-desc {
  font-size: 0.875rem;
  color: #9ca3af;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-contact p {
  font-size: 0.875rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.footer-section h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #ffffff;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  font-size: 0.875rem;
  color: #9ca3af;
  transition: color 0.2s;
}

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #6b7280;
}

.footer-copyright p {
  margin-bottom: 0.25rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: #6b7280;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Map Section */
.map-container {
  height: 25rem;
  background: var(--muted);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.map-info h3 {
  font-size: 1rem;
}

.map-info p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Sidebar */
.sidebar {
  background: var(--accent);
  padding: 2rem;
  border-radius: var(--radius);
}

.sidebar h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.sidebar ul {
  list-style: none;
}

.sidebar li {
  margin-bottom: 0.5rem;
}

.sidebar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  transition: color 0.2s;
}

.sidebar a:hover,
.sidebar a.active {
  color: var(--primary);
}

.sidebar a.active {
  font-weight: 500;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 0;
}

.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.industry-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.industry-card span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Responsive */
@media (max-width: 1024px) {
  .grid-4,
  .grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-offerings {
    grid-template-columns: repeat(2, 1fr);
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .two-col-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero h1 span {
    font-size: 1.25rem;
  }

  .page-header {
    padding: 3rem 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-5 {
    grid-template-columns: 1fr;
  }

  .grid-2-cols {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  /* Footer Responsive */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}