/* ============================================
   株式会社Eq コーポレートサイト
   ============================================ */

/* === CSS Variables === */
:root {
  --primary-light: #ffffff;
  --primary-bg: #f8fafc;
  --accent-blue: #2563eb;
  --accent-cyan: #0891b2;
  --accent-gradient: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border-color: rgba(15, 23, 42, 0.1);
  --card-bg: rgba(255, 255, 255, 0.8);
  --card-hover: rgba(255, 255, 255, 1);
  --font-main: 'Noto Sans JP', 'Hiragino Sans', 'Yu Gothic', sans-serif;
  --font-display: 'Outfit', sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Notice Banner === */
.notice-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  padding: 0.75rem 0;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.notice-banner p {
  color: #ffffff;
  margin: 0;
}

/* Adjust header position when notice is present */
body:has(.notice-banner) .header {
  top: 44px;
}

body:has(.notice-banner) .hero {
  padding-top: 10rem;
}

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

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

body {
  font-family: var(--font-main);
  background: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.8;
  overflow-x: hidden;
}

/* === Background Effects === */
.bg-gradient {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(8, 145, 178, 0.06) 0%, transparent 50%),
    var(--primary-bg);
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  background-image: 
    linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.3;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
  color: var(--text-secondary);
}

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

/* === Container === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* === Navigation === */
.nav {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

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

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition-smooth);
}

/* === Hero Section === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 4rem;
  position: relative;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.9) 0%, rgba(8, 145, 178, 0.85) 100%), 
              url('../assets/images/hero.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1,
.hero .hero-description {
  color: #ffffff;
}

.hero .hero-description {
  opacity: 0.95;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  color: #ffffff;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #ffffff;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero h1 span {
  background: linear-gradient(135deg, #ffffff 0%, #a5f3fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-secondary:hover {
  background: var(--card-bg);
  border-color: var(--accent-blue);
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

/* === Sections === */
.section {
  padding: 6rem 0;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* === Service Cards === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2.5rem;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  background: var(--card-hover);
  border-color: rgba(37, 99, 235, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.1);
}

.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  border-radius: 12px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

/* === Company Info === */
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.company-info-table {
  width: 100%;
  border-collapse: collapse;
}

.company-info-table tr {
  border-bottom: 1px solid var(--border-color);
}

.company-info-table th,
.company-info-table td {
  padding: 1.25rem 0;
  text-align: left;
}

.company-info-table th {
  width: 30%;
  font-weight: 500;
  color: var(--text-secondary);
}

.company-info-table td {
  color: var(--text-primary);
}

/* === Contact Form === */
.contact-section {
  max-width: 700px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.form-label.required::after {
  content: ' *';
  color: #ef4444;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-textarea {
  min-height: 180px;
  resize: vertical;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-submit {
  width: 100%;
  margin-top: 1rem;
}

/* === Confirm Page === */
.confirm-notice {
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.confirm-notice p {
  color: var(--accent-blue);
  margin: 0;
}

.confirm-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}

.confirm-table tr {
  border-bottom: 1px solid var(--border-color);
}

.confirm-table th,
.confirm-table td {
  padding: 2rem 0;
  text-align: left;
  vertical-align: top;
  line-height: 2;
}

.confirm-table th {
  width: 30%;
  font-weight: 500;
  color: var(--text-secondary);
}

.confirm-table td {
  color: var(--text-primary);
}

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

/* === Complete Page === */
.complete-message {
  text-align: center;
  padding: 3rem 0;
}

.complete-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: #ffffff;
  margin: 0 auto 2rem;
}

.complete-message h2 {
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.complete-message p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.complete-message .complete-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 8px;
}

/* === Recruit Page === */
.recruit-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.recruit-intro h2 {
  margin-bottom: 1rem;
}

.job-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.job-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.job-card-header {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.job-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px;
}

.job-tag.tag-new {
  background: #10b981;
}

.job-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.job-project {
  color: var(--accent-blue);
  font-weight: 500;
  margin-bottom: 1rem;
}

.job-catchcopy {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Job Detail Page */
.breadcrumb {
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--accent-blue);
}

.job-detail {
  max-width: 900px;
  margin: 0 auto;
}

.job-hero {
  text-align: center;
  padding: 3rem 2rem;
  margin-bottom: 3rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(8, 145, 178, 0.05) 100%);
  border-radius: 16px;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.job-hero-catchcopy {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}

.job-hero-description {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.job-section {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
}

.job-section:last-of-type {
  border-bottom: none;
}

.job-section-title {
  font-size: 1.25rem;
  color: var(--accent-blue);
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  border-left: 4px solid var(--accent-blue);
}

.job-section-content {
  line-height: 2;
}

.project-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent-blue);
  font-weight: 500;
  border-radius: 8px;
  margin-bottom: 1rem;
}

.job-list {
  list-style: none;
  padding: 0;
}

.job-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

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

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tech-tag {
  padding: 0.4rem 1rem;
  background: var(--primary-light);
  border: 1px solid var(--border-color);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.job-info-table {
  width: 100%;
  border-collapse: collapse;
}

.job-info-table tr {
  border-bottom: 1px solid var(--border-color);
}

.job-info-table th,
.job-info-table td {
  padding: 1.25rem 0;
  text-align: left;
  vertical-align: top;
}

.job-info-table th {
  width: 25%;
  font-weight: 500;
  color: var(--text-secondary);
}

.job-info-table small {
  color: var(--text-muted);
}

.process-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.step-number {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-gradient);
  color: #fff;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 50%;
}

.process-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
}

.job-apply {
  text-align: center;
  padding: 3rem;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 16px;
  margin-top: 2rem;
}

.job-apply p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.btn-large {
  padding: 1.25rem 3rem;
  font-size: 1.1rem;
}

/* Apply Form */
.apply-job-info {
  background: rgba(37, 99, 235, 0.05);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.apply-job-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.apply-job-info h3 {
  color: var(--accent-blue);
  margin: 0;
}

.form-file {
  padding: 0.75rem;
  background: var(--primary-light);
}

.form-hint {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Dynamic Input Rows */
.skill-row,
.sns-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.sns-row .form-input {
  flex: 1;
}

.skill-name {
  flex: 1;
}

.skill-years {
  width: 70px !important;
  flex: none;
  text-align: center;
}

.skill-years-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-remove-row {
  width: 36px;
  height: 36px;
  border: none;
  background: #ef4444;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.btn-remove-row:hover {
  background: #dc2626;
}

.btn-add-row {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px dashed var(--border-color);
  border-radius: 8px;
  color: var(--accent-blue);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-add-row:hover {
  background: rgba(37, 99, 235, 0.05);
  border-color: var(--accent-blue);
}

@media (max-width: 480px) {
  .skill-row {
    flex-wrap: wrap;
  }
  
  .skill-name {
    width: 100%;
    flex: none;
  }
  
  .skill-years {
    width: 70px !important;
  }
}

@media (max-width: 768px) {
  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
  }

  .job-info-table th,
  .job-info-table td {
    display: block;
    width: 100%;
  }

  .job-info-table th {
    padding-bottom: 0.5rem;
    border-bottom: none;
  }

  .job-info-table td {
    padding-top: 0;
    padding-bottom: 1.25rem;
  }
}

/* === Footer === */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
  background: var(--primary-light);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.footer-nav {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.footer-nav a {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

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

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* === Page Header === */
.page-header {
  padding: 10rem 0 4rem;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.1rem;
}

/* === Success Message === */
.alert {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.alert-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.alert-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

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

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .company-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  }

  .nav-list.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .hero {
    padding-top: 6rem;
  }

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

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

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  .company-info-table th,
  .company-info-table td {
    display: block;
    width: 100%;
    padding: 0.75rem 0;
  }

  .company-info-table th {
    padding-top: 1.25rem;
    border-bottom: none;
  }

  .company-info-table td {
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 4rem 0;
  }

  .service-card {
    padding: 1.5rem;
  }
}

