/* assets/css/app.css */

/* ====== Base Styles ====== */
:root {
  /* Colors */
  --primary: #4338ca;
  --primary-dark: #3730a3;
  --primary-light: #e0e7ff;
  --text: #1f2937;
  --text-light: #6b7280;
  --light: #f9fafb;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  
  /* Tool Colors */
  --tool-compress: #4338ca;
  --tool-merge: #7c3aed;
  --tool-split: #db2777;
  --tool-convert: #0d9488;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  
  /* Transitions */
  --transition: all 0.2s ease-in-out;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f9ff;
}

.main-content {
  width: 100%;
  max-width: none;
  margin: 0;
  display: block;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  background-color: var(--light);
  color: var(--text);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ====== Typography ====== */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

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

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

a:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

/* ====== Layout ====== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

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

.btn--primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(67, 56, 202, 0.2);
}

/* ====== Header ====== */
.main-header {
  background-color: #4338ca;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 1rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.logo i {
  margin-right: 0.5rem;
  font-size: 1.75rem;
}

.logo a {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
}

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

.main-nav a {
  color: #fff;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

.main-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary);
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: #ffd700; /* gold/yellow for visibility on purple */
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ====== Hero Section ====== */
.hero-section {
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: white;
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><path d="M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm58-60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4z" fill="rgba(255,255,255,0.1)" fill-rule="evenodd" fill-opacity="0.4"></path></svg>');
  opacity: 0.6;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-section h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* ====== Section Styling ====== */

.key-benefits-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.key-benefits-row span {
  background: #f0f4ff;
  color: #2541b2;
  font-weight: 600;
  border-radius: 1.2em;
  padding: 0.5em 1.2em;
  font-size: 1.05rem;
  box-shadow: 0 1px 4px rgba(80,100,180,0.06);
  letter-spacing: 0.01em;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.25rem;
  color: #111827; /* Explicit dark color for light mode */
  margin-bottom: 0.75rem;
  font-weight: 800;
}

.section-header p {
  font-size: 1.125rem;
  color: #4b5563; /* Explicit gray color for light mode */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Dark mode overrides */
@media (prefers-color-scheme: dark) {
  .section-header h2 {
    color: #f9fafb; /* Light color for dark mode */
  }
  
  .section-header p {
    color: #d1d5db; /* Lighter gray for dark mode */
  }
}

/* ====== Tools Section ====== */
.compress-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  background: #f8f9ff;
}

.compress-centered {
  margin: 0 auto;
  max-width: 440px;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 24px rgba(67,56,202,0.05);
  border-radius: 1.2em;
  padding: 2.5rem 2rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.compress-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drop-area {
  width: 100%;
  min-height: 110px;
  border: 2px dashed #4338ca;
  border-radius: 1em;
  background: #f0f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border 0.2s;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 1.1rem;
  color: #2541b2;
  position: relative;
}
.drop-area.dragover {
  border-color: #7c3aed;
  background: #e0e7ff;
}
#file-label {
  display: inline-block;
  font-weight: 500;
  color: #2541b2;
  font-size: 1.07rem;
}

.tools-section {
  padding: 0 0 30px 0;
  text-align: center;
  position: relative;
  width: 100%;
  background-color: #f8f9ff;
}

.tools-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.tools-section .section-header {
  margin-bottom: 3rem;
  padding: 0 1rem;
}

.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin: 2rem auto 0;
  max-width: 1200px;
  width: 100%;
}

.tool-card {
  border-radius: 0;
  margin-bottom: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  color: white;
  height: 100%;
  min-height: 180px;
  display: flex;
  border: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.tool-card__inner {
  padding: 2rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  transition: all 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
  border-color: #ddd;
}

.tool-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 0.5rem;
  background: transparent;
  color: #fff;
  box-shadow: none;
  margin-left: auto;
  margin-right: auto;
}

.tool-card:hover .tool-card__icon {
  transform: scale(1.1);
}

.tool-card__content h3 {
  font-size: 1.5rem;
  margin: 0 0 0.75rem 0;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}

.tool-card__content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.tool-card__arrow {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--primary);
  transition: var(--transition);
  margin-top: auto;
  align-self: flex-end;
}

.tool-card:hover .tool-card__arrow {
  background-color: var(--primary);
  color: white;
  transform: translateX(5px);
}

/* Tool card colors */
.tool-card--compress {
  background: linear-gradient(135deg, #4a6cf7 0%, #2541b2 100%);
}

.tool-card--merge {
  background: linear-gradient(135deg, #6b46c1 0%, #553c9a 100%);
}

.tool-card--split {
  background: linear-gradient(135deg, #2a9d8f 0%, #1d7874 100%);
}

.tool-card--convert {
  background: linear-gradient(135deg, #f8961e 0%, #f3722c 100%);
}

.tool-card--outline {
  background: linear-gradient(135deg, #FF6B6B 0%, #E64A4A 100%);
}

.tool-card--pdftojpg {
  background: linear-gradient(135deg, #FF7B25 0%, #E66A1A 100%);
}

.tool-card--imagetopdf {
  background: linear-gradient(135deg, #A78BFA 0%, #8B5CF6 100%);
  color: white;
  transition: all 0.3s ease;
}

.tool-card--imagetopdf:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(167, 139, 250, 0.3);
}

.tool-card--pdftoword {
  background: linear-gradient(135deg, #3B82F6 0%, #2563EB 100%);
  color: white;
  transition: all 0.3s ease;
}

.tool-card--pdftoword:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(59, 130, 246, 0.2);
}

.tool-card--unlock {
  background: linear-gradient(135deg, #0d9488 0%, #0f766e 100%);
  color: white;
  transition: all 0.3s ease;
}

.tool-card--unlock:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2);
}

/* ====== SEO Content Section ====== */
.seo-content {
  padding: 4rem 0;
  background-color: #fff;
  line-height: 1.7;
  color: #333;
  width: 100%;
}

.seo-content .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

.seo-content h2 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.seo-content h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 2.5rem 0 1rem;
  font-weight: 500;
}

.seo-content p {
  margin-bottom: 1.5rem;
  color: #4a5568;
  font-size: 1.1rem;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .seo-content {
    padding: 3rem 0;
  }
  
  .seo-content .container {
    padding: 0 1.5rem;
  }
  
  .seo-content h2 {
    font-size: 1.75rem;
  }
  
  .seo-content h3 {
    font-size: 1.3rem;
  }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    padding: 0 1.5rem;
  }
}

@media (max-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .tools-grid {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
  }
  
  .tool-card {
    min-height: 180px;
  }
  
  .tool-card__content h3 {
    font-size: 1.3rem;
  }
  
  .tool-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.tool-card--convert {
  border-top: 4px solid var(--tool-convert);
}

.tool-card--convert .tool-card__icon {
  background-color: var(--tool-convert);
}

/* ====== Features Section ====== */
.features-section {
  padding: 5rem 0;
  background-color: var(--light);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1);
  background-color: var(--primary);
  color: white;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text);
}

.feature-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

/* ====== Footer ====== */
.main-footer {
  background-color: #272727;
  color: #e5e7eb;
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary);
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.footer-logo i {
  margin-right: 0.5rem;
  color: var(--primary);
  font-size: 2rem;
}

.footer-section p {
  color: #9ca3af;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #9ca3af;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.footer-section a:hover {
  color: white;
  transform: translateX(5px);
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.version-info {
  color: #9ca3af;
  font-size: 0.875rem;
}

.version-info a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.version-info a:hover {
  text-decoration: underline;
}

/* ====== Modal ====== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background-color: white;
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  padding: 2rem;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.close-modal:hover {
  background-color: var(--light);
  color: var(--text);
}

.changelog-content h3 {
  color: var(--primary);
  margin-top: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.changelog-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.changelog-content li {
  margin-bottom: 0.5rem;
}

/* ====== Responsive Styles ====== */
@media (max-width: 1024px) {
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transform: translateY(-150%);
    transition: var(--transition);
    z-index: 999;
  }
  
  .main-nav.active {
    transform: translateY(0);
  }
  
  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }
  
  .main-nav li {
    width: 100%;
  }
  
  .main-nav a {
    display: block;
    padding: 1rem 2rem;
  }
  
  .hero-section {
    padding: 4rem 0;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .tools-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 2rem;
  }
  
  .hero-section p {
    font-size: 1.1rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ====== Animations ====== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.5s ease-out forwards;
}

/* ====== Utility Classes ====== */
.text-center {
  text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Header Layout */
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo img {
  max-height: 40px;
}
.site-nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive nav */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    flex-direction: column;
    background: #4338ca;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
  .site-nav.open {
    display: flex;
  }
  .nav-toggle {
    display: block;
  }
}

main {
  flex: 1; /* fill available space */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#drop-area {
  border: 2px dashed #4338ca;
  border-radius: 12px;
  padding: 3rem 2rem;
  width: 100%;
  max-width: 500px;
  text-align: center;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease, box-shadow 0.3s ease;
}

#drop-area.dragover {
  background: #eef;
  box-shadow: 0 10px 40px rgba(67, 56, 202, 0.2);
}

#drop-area .button {
  display: inline-block;
  margin-top: 1rem;
  background-color: #4338ca;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#drop-area .button:hover {
  background-color: #3730a3;
}

#fileElem {
  display: none;
}

/* Footer Layout & Styles */
.footer-container {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.footer-logo {
  grid-column: 1 / 2;
}
.footer-logo img {
  max-width: 150px;
}
.footer-nav {
  grid-column: 2 / 3;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-policy {
  grid-column: 3 / 4;
  text-align: right;
  font-size: 0.875rem;
  line-height: 1.4;
}
.footer-policy a {
  color: white;
  text-decoration: underline;
}
.footer-policy a:hover {
  text-decoration: none;
}
