/* Base styles */
:root {
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* ========== COLOR SCHEMES FROM BRANDING GUIDE ========== */
  /* Uncomment ONE theme section and comment out the others to change the site theme */
  
  /* Scheme 1: Trust & Technology - ACTIVE */
  --primary: #1A365D;     /* Deep Navy Blue - trust, security, professionalism */
  --secondary: #2A9D8F;   /* Teal - modern, tech-forward, growth */
  --accent: #FF8C42;      /* Bright Orange - energy, calls to action */
  --neutralLight: #F8F9FA; /* Light Gray - clean background */
  --neutralDark: #343A40;  /* Dark Gray - professional appearance */
  
  
  /* 
  Scheme 2: Security & Accessibility - INACTIVE 
  To use this theme, comment out Scheme 1 and uncomment these lines:
  
  --primary: #4A148C;
  --secondary: #00BCD4;
  --accent: #CDDC39;
  --neutralLight: #F5F5F5;
  --neutralDark: #424242;
  */
  
  /* 
  Scheme 3: Efficiency & Reliability - INACTIVE
  To use this theme, comment out Scheme 1 and uncomment these lines:
  
  --primary: #4682B4;
  --secondary: #2E8B57;
  --accent: #FF6F61;
  --neutralLight: #FAFAFA;
  --neutralDark: #708090;
  */
  
  /* 
  Scheme 4: Innovation & Strength - INACTIVE
  To use this theme, comment out Scheme 1 and uncomment these lines:
  
  --primary: #303F9F;
  --secondary: #00BCD4;
  --accent: #FFC107;
  --neutralLight: #FFFFFF;
  --neutralDark: #212121;
  */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  min-height: 100vh;
  color: #333;
  line-height: 1.6;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}


  
/* h1 {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

p {
  color: var(--neutralDark);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
 */




label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--neutralDark);
  margin-bottom: 0.5rem;
}

input, select, textarea {
  padding: 0.75rem 1rem;
  background-color: var(--neutralLight);
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  color: var(--neutralDark);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--secondary), white 80%);
}

input::placeholder, textarea::placeholder {
  color: color-mix(in srgb, var(--neutralDark), white 65%);
}

textarea {
  resize: vertical;
}







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

/* Button styles */

  .btn {
    padding: 0.75rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
    text-align: center;
    display: block;
  }


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

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--primary), white 15%);
  transform: translateY(-2px);
}

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

.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--secondary), white 15%);
  transform: translateY(-2px);
}

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

.btn-accent:hover {
  background-color: color-mix(in srgb, var(--accent), black 15%);
  transform: translateY(-2px);
}

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

.btn-outline:hover {
  background-color: color-mix(in srgb, var(--secondary), white 90%);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background-color: color-mix(in srgb, var(--primary), white 90%);
  transform: translateY(-2px);
}

/* Section headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  color: var(--primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--neutralDark);
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Header styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: var(--neutralLight);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.logo a {
  text-decoration: none;
  color: var(--primary);
}

.logo-text {
  font-weight: 700;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
}

.main-nav a {
  text-decoration: none;
  color: var(--neutralDark);
  font-weight: 500;
  transition: color 0.3s;
  padding: 0.5rem;
}

.main-nav a:hover {
  color: var(--secondary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
}

/* Hero section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, var(--neutralLight) 0%, color-mix(in srgb, var(--neutralLight), var(--secondary) 10%) 100%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--primary);
  margin: 0;
}

.subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--neutralDark);
  margin: 0;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.hero-image {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abstract-shape {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  opacity: 0.8;
  filter: blur(2px);
  animation: morphing 15s ease-in-out infinite;
}

.dashboard-mockup {
  position: relative;
  z-index: 2;
  width: 80%;
  height: 75%;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dashboard-header {
  height: 60px;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.dashboard-header::before {
  content: '';
  width: 30%;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.dashboard-content {
  flex: 1;
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.dashboard-card {
  background-color: var(--neutralLight);
  border-radius: 8px;
  height: 80px;
}

.dashboard-card:first-child {
  grid-column: span 2;
  background: linear-gradient(90deg, var(--neutralLight) 70%, color-mix(in srgb, var(--accent), white 70%) 100%);
}

@keyframes morphing {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
  }
  50% {
    border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
  }
  75% {
    border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
}

/* Features section */
.features {
  padding: 6rem 2rem;
  background-color: var(--neutralLight);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background-color: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  background-color: color-mix(in srgb, var(--secondary), white 85%);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  color: var(--secondary);
  width: 24px;
  height: 24px;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-icon svg path,
.feature-icon svg circle,
.feature-icon svg rect,
.feature-icon svg line {
  stroke: currentColor;
}

.feature-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--neutralDark);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.advanced-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background-color: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: 6rem;
}

.advanced-features-content h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.advanced-features-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.advanced-features-content li {
  margin-bottom: 1.5rem;
}

.advanced-features-content li strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.advanced-features-content li p {
  color: var(--neutralDark);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.advanced-features-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--neutralLight);
}

.feature-accent {
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: linear-gradient(45deg, var(--secondary), var(--primary));
  opacity: 0.1;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(45deg);
}

/* Pricing section */
.pricing {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, white 0%, var(--neutralLight) 100%);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  margin: 0 auto 4rem;
  background-color: var(--neutralLight);
  border-radius: 30px;
  padding: 0.5rem;
  position: relative;
  font-weight: 500;
  cursor: pointer;
}

.pricing-toggle span {
 padding: 0.5rem 1.5rem;
    border-radius: 30px;
    z-index: 1;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.pricing-toggle span.active {
  background-color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  color: var(--primary);
}


  .pricing-toggle span:hover:not(.active) {
    color: var(--primary);
  }
  
  .pricing-toggle span.active {
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: var(--primary);
    font-weight: 600;
    transform: translateY(-1px);
  }


  .save-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: var(--accent);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 30px;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }

  .pricing-card {
    background-color: white;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
  }

.pricing-card.popular {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent);
  }

  .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  }


.popular-badge {
   position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--accent);
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    white-space: nowrap;
}

  .plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
  }

  .plan-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
  }

  .currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--neutralDark);
    margin-right: 0.25rem;
  }
.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }

  .period {
    font-size: 1rem;
    color: var(--neutralDark);
    margin-left: 0.25rem;
    opacity: 0.8;
  }

  .plan-description {
    font-size: 1rem;
    color: var(--neutralDark);
    margin-bottom: 2rem;
  }
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    flex-grow: 1;
  }

  .plan-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--neutralDark);
  }

  .plan-features svg {
    color: var(--secondary);
    margin-right: 0.75rem;
    flex-shrink: 0;
  }


.plan-features svg path,
.plan-features svg circle,
.plan-features svg line {
  stroke: currentColor;
}
  .enterprise-cta {
    background-color: white;
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }

  .enterprise-content h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
  }

  .enterprise-content p {
    font-size: 1.125rem;
    color: var(--neutralDark);
    margin: 0;
  }

/* Contact section */
.contact {
  padding: 6rem 2rem;
  background-color: white;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-card {
  background-color: var(--neutralLight);
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: color-mix(in srgb, var(--accent), white 85%);
  border-radius: 50%;
  margin-bottom: 1rem;
}

.icon svg {
  color: var(--accent);
  width: 24px;
  height: 24px;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 0.5rem 0;
}

.info-card p {
  color: var(--neutralDark);
  font-size: 0.9375rem;
  margin: 0 0 0.75rem 0;
}

.info-card a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.info-card a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.contact-form-container {
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 2.5rem;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.form-group:nth-child(5), .form-group:nth-child(6) {
  grid-column: span 2;
}


 .payment-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
  }
  
  .payment-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .cancel-icon {
    background-color: var(--neutralDark);
    color: white;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
  }
  

  
  .button-group {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }

    .payment-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
  }
  
  .payment-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .success-icon {
    background-color: var(--secondary);
    color: white;
    font-size: 2rem;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
  }

  
  .email-confirm, .plan-confirm {
    background-color: #f8f9fa;
    padding: 0.75rem;
    border-radius: 6px;
    margin: 1rem 0;
  }
  
  .status-badge {
    display: inline-block;
    background-color: #2A9D8F;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
  }
  
  .reference {
    font-size: 0.875rem;
    color: #666;
    margin: 2rem 0;
  }
  
  

/* Footer */
.footer {
  background-color: var(--primary);
  color: white;
  padding: 5rem 2rem 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-logo .logo-text {
  font-size: 1.75rem;
  font-weight: 700;
}

.footer-logo p {
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-nav-col h4 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1.25rem 0;
}

.footer-nav-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav-col a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-col a:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.8;
}

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

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: background-color 0.2s ease;
  color: white;
}

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

.social-links svg {
  width: 18px;
  height: 18px;
  stroke-width: 2px;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Responsive styles */
@media (max-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .cta-group {
    justify-content: center;
  }

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

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

  .advanced-features {
    grid-template-columns: 1fr;
    padding: 2rem;
  }

  .image-container {
    height: 300px;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
  }

  .enterprise-cta {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .info-card {
    flex: 1 1 30%;
    min-width: 250px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .main-nav ul {
    gap: 1rem;
  }
  
  .contact-form {
    grid-template-columns: 1fr;
  }

  .form-group:nth-child(5), .form-group:nth-child(6) {
    grid-column: span 1;
  }

  .btn-form {
    grid-column: span 1;
  }

  
}

@media (max-width: 576px) {
  .hero {
    padding: 7rem 1rem 3rem;
  }

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

  .subtitle {
    font-size: 1.125rem;
  }

  .cta-group {
    flex-direction: column;
    width: 100%;
  }

  .cta-group .btn {
    width: 100%;
    text-align: center;
  }
  
  .features {
    padding: 4rem 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .advanced-features {
    padding: 1.5rem;
    margin-top: 3rem;
  }

  .advanced-features-content h3 {
    font-size: 1.5rem;
  }
  
  .pricing {
    padding: 4rem 1rem;
  }

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

  .pricing-card {
    padding: 2rem 1.5rem;
  }
  
  .contact {
    padding: 4rem 1rem;
  }

  .contact-info {
    flex-direction: column;
  }

  .contact-form-container {
    padding: 1.5rem;
  }
  
  .footer {
    padding: 4rem 1rem 2rem;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
} 