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

:root {
  --primary-color: #0066cc;
  --primary-dark: #004c99;
  --secondary-color: #00a86b;
  --text-dark: #1a1a1a;
  --text-light: #666666;
  --text-muted: #999999;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --spacing-unit: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

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

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 16px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  letter-spacing: -0.5px;
}

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

.nav-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary-color);
}

.btn-login {
  padding: 8px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 6px;
  color: var(--primary-color);
}

.btn-login:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.hero {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: var(--bg-white);
  padding: 120px 0;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.hero-values {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  font-size: 18px;
  font-weight: 500;
}

.value-badge {
  opacity: 0.95;
}

.value-divider {
  opacity: 0.5;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--bg-white);
  color: var(--primary-color);
}

.btn-primary:hover {
  background: var(--bg-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--bg-white);
  border: 2px solid var(--bg-white);
}

.btn-secondary:hover {
  background: var(--bg-white);
  color: var(--primary-color);
}

.stats {
  padding: 80px 0;
  background: var(--bg-light);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  text-align: center;
}

.stat-item {
  padding: 32px;
  background: var(--bg-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.services-preview {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-bottom {
  text-align: center;
  margin-top: 64px;
}
.section-bottom p {
  font-size: 18px;
  margin: 18px 0;
  color: var(--text-light);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--bg-white);
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.7;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--primary-dark);
}

.clients {
  padding: 80px 0;
  background: var(--bg-light);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
}

.client-logo {
  background: var(--bg-white);
  padding: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.logo-placeholder {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.testimonials {
  padding: 100px 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.testimonial-card {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  position: relative;
}

.testimonial-quote {
  font-size: 72px;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial-text {
  position: relative;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.7;
  padding-top: 20px;
}

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

.author-avatar {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 600;
  font-size: 18px;
}

.author-name {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.author-title {
  font-size: 14px;
  color: var(--text-light);
}

.newsletter {
  padding: 80px 0;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: var(--bg-white);
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.newsletter-content p {
  margin-bottom: 32px;
  opacity: 0.95;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
}

.newsletter-form button {
  white-space: nowrap;
}

.footer {
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--bg-white);
}

.contact-info li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

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

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
}

.page-hero {
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  color: var(--bg-white);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  opacity: 0.95;
}

.services-detail {
  padding: 80px 0;
}

.service-detail-card {
  margin-bottom: 64px;
  background: var(--bg-white);
  border-radius: 16px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.service-detail-content {
  padding: 48px;
}

.service-detail-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  margin-bottom: 24px;
}

.service-detail-card h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.service-description {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

.service-features h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.service-features ul {
  list-style: none;
}

.service-features li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 18px;
}

.cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.cta-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.team-section {
  padding: 80px 0;
}

.team-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.team-intro h2 {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.team-intro p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.team-member {
  background: var(--bg-white);
  padding: 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.member-avatar {
  margin-bottom: 24px;
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-weight: 700;
  font-size: 28px;
  margin: 0 auto;
}

.team-member h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.member-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 16px;
}

.member-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.member-social a {
  width: 36px;
  height: 36px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  transition: var(--transition);
}

.member-social a:hover {
  background: var(--primary-color);
  color: var(--bg-white);
}

.team-values {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-values h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 64px;
  color: var(--text-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.value-card {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.value-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.value-card p {
  color: var(--text-light);
  line-height: 1.7;
}

.about-story {
  padding: 80px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2 {
  font-size: 40px;
  margin-bottom: 24px;
  color: var(--text-dark);
}

.about-text p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image .image-placeholder {
  background: var(--bg-light);
  padding: 120px 40px;
  border-radius: 12px;
  text-align: center;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: 1px;
}

.mission-vision {
  padding: 80px 0;
  background: var(--bg-light);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.mission-card {
  background: var(--bg-white);
  padding: 48px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  margin-bottom: 24px;
}

.mission-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.mission-card p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
}

.what-we-do {
  padding: 80px 0;
}

.what-we-do .section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 56px;
}

.what-we-do .section-header h2 {
  font-size: 40px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.what-we-do .section-header p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
}

.what-we-do-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-bottom: 56px;
}

.what-we-do-card {
  background: var(--bg-white);
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
}

.what-we-do-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.what-we-do-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  margin: 0 auto 24px;
  transition: var(--transition);
}

.what-we-do-card:hover .what-we-do-icon {
  transform: scale(1.05);
}

.what-we-do-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.what-we-do-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

.what-we-do .section-bottom {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 32px;
  background: var(--bg-light);
  border-radius: 12px;
}

.what-we-do .section-bottom p {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.core-values {
  padding: 80px 0;
}

.values-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 40px;
}

.value-item {
  padding: 32px;
  background: var(--bg-light);
  border-radius: 12px;
  transition: var(--transition);
}

.value-item:hover {
  background: var(--bg-white);
  box-shadow: var(--shadow-md);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.value-item h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.value-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.why-choose {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-choose h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 64px;
  color: var(--text-dark);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.feature-item {
  background: var(--bg-white);
  padding: 32px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.feature-item h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.feature-item p {
  color: var(--text-light);
  line-height: 1.7;
}

.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
}

.contact-info-panel h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-info-panel > p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0066cc 0%, #004c99 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  flex-shrink: 0;
}

.contact-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.contact-text p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-text a {
  color: var(--text-light);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--primary-color);
}

.social-connect {
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.social-connect h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-form-panel {
  background: var(--bg-white);
  padding: 48px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.contact-form-panel h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
  resize: vertical;
}

.map-section {
  padding: 0 0 80px 0;
}

.map-placeholder {
  background: var(--bg-light);
  padding: 120px 40px;
  border-radius: 16px;
  text-align: center;
}

.map-content {
  color: var(--text-muted);
}

.map-content svg {
  margin-bottom: 16px;
}

.map-content p {
  font-weight: 600;
}

.faq-section {
  padding: 80px 0;
}

.faq-categories {
  max-width: 900px;
  margin: 0 auto;
}

.faq-category {
  margin-bottom: 64px;
}

.faq-category h2 {
  font-size: 32px;
  margin-bottom: 32px;
  color: var(--text-dark);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.faq-question h3 {
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
}

.faq-toggle {
  font-size: 24px;
  color: var(--primary-color);
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text-light);
  line-height: 1.7;
}

.faq-cta {
  text-align: center;
  margin-top: 80px;
  padding: 64px 40px;
  background: var(--bg-light);
  border-radius: 16px;
}

.faq-cta h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.faq-cta p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-values {
    flex-wrap: wrap;
  }

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

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid,
  .stats-grid,
  .clients-grid,
  .testimonials-grid,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content,
  .contact-grid,
  .mission-vision-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
