/* style.css */

/* CSS Variables */
:root {
  --font-primary: "Nunito", sans-serif;
  --font-headings: "Oswald", sans-serif;

  --color-bg: #f0f2f5;
  --color-bg-alt: #e9edf1;
  --color-text: #333333;
  --color-text-light: #555555;
  --color-heading: #222222;
  --color-white: #ffffff;
  --color-black: #000000;

  --color-accent: #a7d7c5; /* Pastel green/blue */
  --color-accent-dark: #8cbab0;
  --color-accent-light: #c3f2e0;

  /* Neomorphism Shadows */
  --shadow-light-strong: rgba(255, 255, 255, 0.9);
  --shadow-dark-strong: rgba(180, 190, 200, 0.7); /* Adjusted for more pop */

  --neo-shadow-convex: 6px 6px 12px var(--shadow-dark-strong),
    -6px -6px 12px var(--shadow-light-strong);
  --neo-shadow-concave: inset 4px 4px 8px var(--shadow-dark-strong),
    inset -4px -4px 8px var(--shadow-light-strong);
  --neo-shadow-concave-accent: inset 3px 3px 7px var(--color-accent-dark),
    inset -3px -3px 7px var(--color-accent-light);

  --header-height: 80px;
  --border-radius-main: 15px;
  --border-radius-small: 10px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px; /* Base font size */
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  padding-top: var(--header-height); /* Account for fixed header */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-container {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  color: var(--color-heading);
  margin-bottom: 1.25rem; /* 20px */
  line-height: 1.3;
  text-align: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 1.5rem;
} /* ~48px */
h2.section-title {
  /* Overrides HTML style */
  font-size: 2.5em; /* ~40px */
  margin-bottom: 2.5rem; /* 40px */
  color: var(--color-heading);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}
h3 {
  font-size: 1.75em;
} /* ~28px */
h4 {
  font-size: 1.25em;
} /* ~20px */

p {
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

a {
  color: var(--color-accent-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius-small);
}

section {
  /* Overrides HTML style */
  padding: 3.75rem 0; /* 60px */
  overflow-x: hidden; /* Prevent horizontal scroll from AOS */
}

/* Global Neomorphism Styles */
.neo-button,
button[type="submit"] {
  /* Global button style */
  display: inline-block;
  font-family: var(--font-headings);
  font-weight: 500;
  padding: 0.8rem 1.8rem; /* 12.8px 28.8px */
  border-radius: 50px; /* More modern pill shape */
  background-color: var(--color-accent);
  color: var(--color-white);
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
  box-shadow: var(--neo-shadow-convex);
  transition: all 0.2s cubic-bezier(0.68, -0.55, 0.27, 1.55); /* Elastic transition */
  font-size: 1rem;
}

.neo-button:hover,
button[type="submit"]:hover {
  box-shadow: var(--neo-shadow-concave-accent);
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px) scale(1.02);
}

.neo-button:active,
button[type="submit"]:active {
  box-shadow: var(--neo-shadow-concave-accent);
  transform: translateY(1px) scale(0.98);
}

.neo-card {
  /* Global card style */
  background-color: var(--color-bg);
  padding: 1.5rem; /* 24px */
  border-radius: var(--border-radius-main);
  box-shadow: var(--neo-shadow-convex);
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center; /* For inline content */
}

.neo-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 8px 8px 16px var(--shadow-dark-strong),
    -8px -8px 16px var(--shadow-light-strong);
}

.card-image {
  width: 100%;
  height: 200px; /* Default height for card images */
  border-radius: var(--border-radius-small);
  overflow: hidden;
  margin-bottom: 1rem;
  display: flex; /* Center image if not 100% width */
  justify-content: center;
  align-items: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(
    --border-radius-small
  ); /* Ensure image itself is rounded if it's smaller than container */
}

.card-content {
  width: 100%;
}

.card-content h3 {
  /* Overrides HTML style */
  font-size: 1.5em; /* ~24px */
  color: var(--color-heading);
  margin-top: 0;
  margin-bottom: 0.75rem;
  text-align: left; /* As per HTML spec */
}

.card-content p {
  /* Overrides HTML style */
  font-size: 0.95em; /* ~15px */
  color: var(--color-text-light);
  text-align: left; /* As per HTML spec */
  line-height: 1.6;
}

/* Header & Navigation */
.site-header {
  background-color: rgba(
    240,
    242,
    245,
    0.85
  ); /* Light bg with transparency for slight glassmorphism */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%; /* Take full width of main-container */
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.8em; /* ~28px */
  font-weight: 700;
  color: var(--color-heading);
  text-decoration: none;
}

.logo-accent {
  color: var(--color-accent-dark);
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 1.5rem; /* 24px */
}

.main-navigation a {
  font-family: var(--font-headings);
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.5em 0.8em;
  border-radius: var(--border-radius-small);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
  /* Add 'active' class with JS */
  color: var(--color-white);
  background-color: var(--color-accent);
}

.menu-toggle {
  display: none; /* Hidden on desktop */
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-heading);
  cursor: pointer;
}

/* Parallax & Overlay */
.parallax-bg {
  /* Overrides HTML style */
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  color: var(--color-white); /* Default text color for parallax sections */
}

.parallax-bg h1,
.parallax-bg h2,
.parallax-bg p {
  position: relative; /* To sit above overlay */
  z-index: 2;
}

.overlay {
  /* Overrides HTML style */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Darker overlay for better contrast */
  z-index: 1;
}

/* Hero Section */
.hero-section {
  min-height: 80vh; /* Slightly less than full viewport to encourage scroll */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.hero-section h1 {
  /* Overrides HTML style */
  color: var(--color-white) !important; /* Ensure white as per prompt */
  font-size: 3.5em; /* ~56px */
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.hero-section p {
  /* Overrides HTML style */
  color: var(--color-white) !important; /* Ensure white as per prompt */
  font-size: 1.2em; /* ~19px */
  margin-bottom: 2rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* About Section */
.about-section .about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
.about-section .about-content img {
  /* from HTML float */
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-main);
  box-shadow: var(--neo-shadow-convex);
}

@media (min-width: 768px) {
  .about-section .about-content {
    grid-template-columns: repeat(
      auto-fit,
      minmax(300px, 1fr)
    ); /* Responsive columns */
  }
  .about-section .about-content img[style*="float: right"] {
    /* target floated image specifically */
    float: right; /* Maintain float on larger screens */
    margin-left: 2rem;
    max-width: 45%; /* Control size when floated */
  }
}

/* Services Section */
.services-section {
  background-color: var(--color-bg-alt);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; /* 24px */
}
.services-grid .neo-card .card-image {
  height: 180px;
} /* Specific height for service cards */

/* Statistics Section */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stat-item {
  background-color: var(--color-bg);
  padding: 1.5rem;
  border-radius: var(--border-radius-main);
  box-shadow: var(--neo-shadow-concave); /* Inset look for stats */
}
.stat-number {
  font-family: var(--font-headings);
  font-size: 3em; /* ~48px */
  color: var(--color-accent-dark);
  display: block;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-family: var(--font-headings);
  font-size: 1.1em; /* ~18px */
  color: var(--color-heading);
  display: block;
  margin-bottom: 0.5rem;
}
.stat-item p {
  font-size: 0.9em;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Instructors (Team) Section */
.instructors-section {
  background-color: var(--color-bg);
}
.section-subtitle {
  max-width: 700px;
  margin: 0 auto 2.5rem auto;
  text-align: center;
  font-size: 1.1em;
  color: var(--color-text-light);
}
.instructors-carousel, .testimonial-carousel {
  display: flex; /* Basic setup for a carousel, JS needed for full functionality */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-bottom: 1rem; /* Space for scrollbar */
}

@media (min-width: 1200px) {
  .instructors-carousel, .testimonial-carousel {
    flex-direction: row;
  }
}

.instructor-card {
  min-width: 280px; /* Minimum width for carousel items */
  flex: 0 0 auto; /* Prevent shrinking/growing */
}
.instructor-card .card-image {
  width: 150px; /* Smaller image for profile */
  height: 150px;
  border-radius: 50%; /* Circular images */
  margin-left: auto;
  margin-right: auto;
}
.instructor-card .card-image img {
  border-radius: 50%;
}
.instructor-card .card-content h3 {
  text-align: center;
  font-size: 1.3em;
}
.instructor-card .card-content p {
  text-align: center;
  font-size: 0.9em;
}

/* Partners Section */
.partners-logo-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
.partners-logo-carousel img {
  max-height: 60px; /* Control logo height */
  width: auto;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  filter: grayscale(50%);
}
.partners-logo-carousel img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/* Webinars (Accordion) Section */
.webinars-section {
  background-color: var(--color-bg-alt);
}
.accordion-item {
  margin-bottom: 1rem;
}
.accordion-header {
  background-color: transparent; /* Button itself is part of card */
  border: none;
  width: 100%;
  padding: 1rem; /* Padding inside the button */
  text-align: left;
  font-family: var(--font-headings);
  font-size: 1.1em;
  color: var(--color-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}
.accordion-header:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.accordion-icon {
  font-size: 1.5em;
  transition: transform 0.3s ease;
}
.accordion-item.active .accordion-icon {
  /* Add 'active' class with JS */
  transform: rotate(45deg);
}
.accordion-content {
  padding: 0 1rem 1rem 1rem;


  transition: max-height 0.4s ease-out, padding 0.4s ease-out;
  text-align: left;
}
.accordion-content p {
  margin-bottom: 1rem;
  font-size: 0.95em;
}
.accordion-content img {
  margin-top: 1rem;
  max-width: 100%;
  border-radius: var(--border-radius-small);
}
.accordion-item.active .accordion-content {
  /* Add 'active' class with JS */
  max-height: 500px; /* Adjust as needed */
  padding: 1rem;
}

 /* Cookie Popup CSS */
    #cookiePopup {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 100%;
      background-color: rgba(30, 30, 30, 0.95);
      color: #f0f2f5;
      padding: 20px;
      box-sizing: border-box;
      text-align: center;
      z-index: 9999;
      display: none;
      /* Hidden by default */
    }

    #cookiePopup p {
      margin: 0 0 15px 0;
      font-size: 0.9em;
      color: #f0f2f5;
    }

    #cookieAcceptButton {
      padding: 10px 20px;
      background-color: #a7d7c5;
      color: #1e1e1e;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      font-weight: bold;
    }

    #cookieAcceptButton:hover {
      background-color: #8cbab0;
    }
.testimonial-card {
  min-width: 300px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonial-card .card-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.testimonial-card .card-image img {
  border-radius: 50%;
}
.testimonial-card .card-content p {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  text-align: center;
}
.testimonial-card .card-content h4 {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 1em;
  color: var(--color-accent-dark);
  text-align: center;
  margin: 0;
}

/* Media Section */
.media-section {
  background-color: var(--color-bg);
}
.media-logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
}
.media-logo-item {
  text-align: center;
}
.media-logo-item img {
  max-height: 50px;
  width: auto;
  margin: 0 auto 0.5rem auto;
  opacity: 0.8;
  filter: grayscale(30%);
}
.media-logo-item p {
  font-size: 0.9em;
  color: var(--color-text-light);
}

/* External Resources Section */
.resources-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.resource-link-item .resource-title {
  font-size: 1.2em;
  margin-bottom: 0.5rem;
}
.resource-link-item .resource-title a {
  color: var(--color-accent-dark);
  font-weight: 600;
}
.resource-link-item .resource-title a:hover {
  text-decoration: underline;
}
.resource-link-item .resource-description {
  font-size: 0.9em;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Resources (Knowledge Base) Section */
.resources-section {
  background-color: var(--color-bg-alt);
}
.knowledge-base-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.knowledge-item .card-image {
  height: 180px;
}
.knowledge-item .card-content h3 {
  font-size: 1.3em;
}
.neo-button.small-button {
  padding: 0.6rem 1.2rem;
  font-size: 0.9em;
  margin-top: 1rem;
}
a.read-more-link {
  /* Style for "Read More" type links */
  display: inline-block;
  font-family: var(--font-headings);
  color: var(--color-accent-dark);
  font-weight: 600;
  text-decoration: underline;
  margin-top: 0.5rem;
}
a.read-more-link:hover {
  color: var(--color-accent);
}

/* Contact Section */
.contact-section {
  color: var(--color-white);
}
.contact-section .section-title,
.contact-section .section-subtitle {
  color: var(
    --color-white
  ); /* Overriding default heading color for this section */
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.contact-container-inner {
  position: relative;
  z-index: 2;
}
.contact-form {
  background-color: rgba(240, 242, 245, 0.9); /* Slight transparency */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 2.5rem; /* 40px */
  max-width: 700px;
  margin: 2rem auto 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  text-align: left;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-small);
  background-color: var(--color-white);
  box-shadow: var(--neo-shadow-concave);
  font-family: var(--font-primary);
  font-size: 1rem;
  color: var(--color-text);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(167, 215, 197, 0.3), var(--neo-shadow-concave);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-group {
  display: flex;
  align-items: flex-start; /* Align checkbox with start of label */
  gap: 0.5rem;
}
.checkbox-group input[type="checkbox"] {
  margin-top: 0.25em; /* Align checkbox better with text */
  width: 1.2em;
  height: 1.2em;
  accent-color: var(--color-accent);
}
.checkbox-group label.checkbox-label {
  font-size: 0.9em;
  color: var(--color-text-light);
  font-weight: normal;
  margin-bottom: 0;
}
.checkbox-group label.checkbox-label a {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* Footer */
.site-footer {
  background-color: var(--color-heading);
  color: rgba(255, 255, 255, 0.7);
  padding: 3rem 0 1rem 0;
  font-size: 0.9em;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-column h4 {
  font-family: var(--font-headings);
  color: var(--color-white);
  font-size: 1.2em;
  margin-bottom: 1rem;
  text-align: left;
}
.footer-column p {
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-column ul {
  list-style: none;
  padding: 0;
}
.footer-column ul li {
  margin-bottom: 0.5rem;
}
.footer-column ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}
.footer-column ul li a:hover {
  color: var(--color-white);
  text-decoration: underline;
}
.social-links-text a {
  /* Specifically target text social links */
  display: inline-block;
  padding: 0.2em 0;
}
.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85em;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

/* Page-Specific Styles */
/* Success Page */
.success-page-content {
  /* For success.html */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(
    100vh - var(--header-height)
  ); /* Full viewport height minus header */
  text-align: center;
  padding: 2rem;
}
.success-page-content .neo-card {
  max-width: 500px;
  width: 90%;
}
.success-page-content h1 {
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}
.success-page-content p {
  font-size: 1.1em;
  margin-bottom: 1.5rem;
}

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
  /* For privacy.html, terms.html */
  padding-top: 2rem; /* Additional padding to initial body padding-top */
  padding-bottom: 2rem;
}
.privacy-content h1,
.terms-content h1 {
  margin-bottom: 2rem;
  text-align: left;
}
.privacy-content h2,
.terms-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.8em;
  text-align: left;
}
.privacy-content p,
.terms-content p,
.privacy-content ul,
.terms-content ul {
  text-align: left;
  margin-bottom: 1rem;
}
.privacy-content ul,
.terms-content ul {
  list-style-position: inside;
  padding-left: 1rem;
}

/* Cookie Popup (from HTML, ensure it fits) */
#cookiePopup {
  /* Styles already in HTML, ensuring no conflicts */
  font-family: var(--font-primary);
}
#cookiePopup a {
  color: var(--color-accent) !important; /* Override if needed */
}
#cookieAcceptButton {
  font-family: var(--font-headings);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  body {
    padding-top: 60px; /* Adjust for smaller header if it changes */
    --header-height: 60px;
  }
  .site-header {
    height: var(--header-height);
  }

  .main-navigation {
    display: none; /* Hidden by default on mobile */
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: rgba(240, 242, 245, 0.98);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    padding: 1rem 0;
  }
  .main-navigation.active {
    /* Add 'active' class with JS */
    display: flex;
  }
  .main-navigation ul {
    flex-direction: column;
    width: 100%;
    gap: 0;
  }
  .main-navigation li {
    width: 100%;
    text-align: center;
  }
  .main-navigation a {
    display: block;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .main-navigation li:last-child a {
    border-bottom: none;
  }
  .menu-toggle {
    display: block; /* Show burger icon */
  }

  .hero-section h1 {
    font-size: 2.5em;
  }
  .hero-section p {
    font-size: 1em;
  }
  h2.section-title {
    font-size: 2em;
  }

  .about-section .about-content img[style*="float: right"] {
    float: none;
    max-width: 80%;
    margin: 0 auto 1.5rem auto; /* Center image on mobile */
  }

  .stats-grid,
  .services-grid,
  .knowledge-base-grid,
  .media-logos-grid,
  .resources-link-list {
    grid-template-columns: 1fr; /* Stack items on mobile */
  }
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-column h4,
  .footer-column p,
  .footer-column ul li {
    text-align: center;
  }
  .footer-column ul {
    padding-left: 0;
  }
}
