@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-dark: #071224;
  --primary-medium: #0d1f3d;
  --primary-light: #1e355c;
  --accent-gold: #c5a880;
  --accent-gold-dark: #9e7d43;
  --accent-gold-gradient: linear-gradient(135deg, #dfba73 0%, #c5a880 50%, #9e7d43 100%);
  --accent-gold-glow: rgba(197, 168, 128, 0.4);
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --border-radius-sm: 8px;
  --border-radius-md: 16px;
  --border-radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--primary-medium);
  line-height: 1.25;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section-bg {
  background-color: var(--bg-light);
}

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

.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.badge-gold {
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold-dark);
  border: 1px solid rgba(197, 168, 128, 0.3);
}

.badge-white {
  background-color: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius-sm);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.btn-gold {
  background: var(--accent-gold-gradient);
  color: var(--primary-dark);
  box-shadow: 0 4px 14px 0 rgba(197, 168, 128, 0.4);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px 0 rgba(197, 168, 128, 0.6);
}

.btn-outline-gold {
  background: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.btn-outline-gold:hover {
  background: var(--accent-gold-gradient);
  color: var(--primary-dark);
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-navy {
  background-color: var(--primary-medium);
  color: var(--text-white);
}

.btn-navy:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
}

.btn-outline-navy {
  background: transparent;
  color: var(--primary-medium);
  border-color: var(--primary-medium);
}

.btn-outline-navy:hover {
  background-color: var(--primary-medium);
  color: var(--text-white);
  transform: translateY(-3px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  transition: var(--transition-smooth);
}

header.scrolled {
  padding: 10px 0;
  background-color: rgba(7, 18, 36, 0.95);
  border-bottom: 1px solid rgba(197, 168, 128, 0.2);
}

header.scrolled .nav-logo span {
  color: var(--text-white);
}

header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.8);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--accent-gold);
}

header.scrolled .mobile-menu-btn span {
  background-color: var(--text-white);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  transition: var(--transition-smooth);
}

header.scrolled .nav-wrapper {
  height: 85px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 105px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

header.scrolled .nav-logo img {
  height: 75px;
}

.nav-logo span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 500;
  font-size: 15px;
  color: var(--primary-medium);
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent-gold-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold-gradient);
  transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2.5px;
  background-color: var(--primary-medium);
  border-radius: 4px;
  transition: var(--transition-smooth);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 320px;
  height: 100vh;
  background-color: var(--primary-dark);
  z-index: 1050;
  padding: 100px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav a {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 12px;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-gold);
  padding-left: 8px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(7, 18, 36, 0.85), rgba(7, 18, 36, 0.85)), url('assets/hero_bg.jpg') no-repeat center center/cover;
  color: var(--text-white);
  padding-top: 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  color: var(--text-white);
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-content h1 span {
  background: var(--accent-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  max-width: 600px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quick Inquiry Card */
.inquiry-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-md);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.inquiry-card h3 {
  color: var(--text-white);
  font-size: 24px;
  margin-bottom: 8px;
}

.inquiry-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--border-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-size: 15px;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.1);
}

select.form-control option {
  background-color: var(--primary-dark);
  color: var(--text-white);
}

.inquiry-card .btn {
  width: 100%;
  margin-top: 12px;
}

/* Page Header Sections */
.page-header {
  padding: 200px 0 80px;
  background: linear-gradient(rgba(7, 18, 36, 0.9), rgba(7, 18, 36, 0.9)), url('assets/global_education.jpg') no-repeat center center/cover;
  color: var(--text-white);
  text-align: center;
}

.page-header h1 {
  color: var(--text-white);
  font-size: 48px;
  margin-bottom: 16px;
}

.page-header p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
}

/* Features / Highlights */
.section-title {
  margin-bottom: 48px;
}

.section-title h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 40px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-gold-gradient);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.3);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50px;
  background-color: rgba(197, 168, 128, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold-dark);
  font-size: 24px;
  margin-bottom: 24px;
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 15px;
}

/* Focus / MBBS Highlight Section */
.focus-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.focus-image {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.focus-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.focus-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.focus-content p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

.focus-list {
  list-style: none;
  margin-bottom: 32px;
}

.focus-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
}

.focus-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-gold-dark);
  font-weight: bold;
}

/* Country Grid & Cards */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

.country-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.country-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(197, 168, 128, 0.3);
}

.country-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.country-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.country-card:hover .country-image img {
  transform: scale(1.08);
}

.country-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
}

.country-content {
  padding: 24px;
}

.country-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.country-content p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.country-meta {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-medium);
}

.country-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* MBBS Table styling */
.table-wrapper {
  overflow-x: auto;
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-top: 40px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th {
  background-color: var(--primary-medium);
  color: var(--text-white);
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.comparison-table th:first-child {
  border-top-left-radius: var(--border-radius-md);
}

.comparison-table th:last-child {
  border-top-right-radius: var(--border-radius-md);
}

.comparison-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:nth-child(even) {
  background-color: var(--bg-light);
}

.comparison-table .highlight-cell {
  font-weight: 600;
  color: var(--primary-medium);
}

/* Timeline / Admission Process */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 40px auto 0;
  padding-left: 32px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 8px;
  width: 2px;
  height: 100%;
  background: var(--border-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-badge {
  position: absolute;
  left: -32px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bg-white);
  border: 3px solid var(--accent-gold-dark);
  z-index: 1;
}

.timeline-content {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 14px;
}

/* Contact Details & Form */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
}

.contact-info {
  background-color: var(--primary-medium);
  color: var(--text-white);
  padding: 48px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}

.contact-info h3 {
  color: var(--text-white);
  font-size: 28px;
  margin-bottom: 16px;
}

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

.contact-details-list {
  list-style: none;
}

.contact-details-list li {
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-details-list .icon {
  color: var(--accent-gold);
  font-size: 20px;
  margin-top: 2px;
}

.contact-details-list h4 {
  color: var(--text-white);
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-details-list a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.contact-details-list a:hover {
  color: var(--accent-gold);
}

.contact-form-container {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-container h3 {
  font-size: 28px;
  margin-bottom: 8px;
}

.contact-form-container p {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.contact-form-container .form-control {
  border-color: var(--border-color);
  background: var(--bg-light);
  color: var(--text-dark);
}

.contact-form-container .form-control:focus {
  border-color: var(--primary-medium);
  background: var(--bg-white);
}

.contact-form-container label {
  color: var(--primary-medium);
}

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

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  background-color: var(--bg-white);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-medium);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  background-color: var(--bg-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  padding: 0 24px;
  color: var(--text-muted);
  font-size: 15px;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-question::after {
  content: '+';
  font-size: 22px;
  color: var(--accent-gold-dark);
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: '−';
}

/* Footer styling */
footer {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 80px 0 40px;
  border-top: 4px solid var(--accent-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-logo img {
  height: 110px;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 24px;
}

.footer-title {
  color: var(--accent-gold);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--accent-gold);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 4px;
}

.footer-contact-list {
  list-style: none;
}

.footer-contact-list li {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list .icon {
  color: var(--accent-gold);
}

.footer-contact-list a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact-list a:hover {
  color: var(--accent-gold);
}

.godaddy-badge {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--border-radius-sm);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.godaddy-badge strong {
  color: var(--accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.footer-socials {
  display: flex;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.social-icon:hover {
  background-color: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

/* Success Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(7, 18, 36, 0.8);
  backdrop-filter: blur(8px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 48px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(197, 168, 128, 0.3);
  position: relative;
}

.modal-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--accent-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}

.modal h3 {
  font-size: 26px;
  margin-bottom: 12px;
}

.modal p {
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .focus-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .focus-image img {
    height: 360px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-content h1 {
    font-size: 38px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
