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

:root {
  --cyan-500: #06b6d4;
  --cyan-600: #0891b2;
  --cyan-700: #0e7490;
  --cyan-100: #cffafe;
  --cyan-50: #ecfeff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --white: #ffffff;
  --green-500: #22c55e;
  --red-500: #ef4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans JP', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--gray-900);
  background-color: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

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

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 2rem;
  }
}

/* Header */
.header {
  background-color: var(--white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: transform 0.2s;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-icon {
  position: relative;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b263b 50%, #0d1b2a 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4), inset 0 1px 0 rgba(255,255,255,0.1);
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
  border-radius: 10px;
}

.logo-icon svg {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text-main {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: 0.02em;
}

.logo-text-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--cyan-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .logo-icon svg {
    width: 32px;
    height: 32px;
  }

  .logo-text-main {
    font-size: 1.25rem;
  }

  .logo-text-sub {
    font-size: 0.6875rem;
  }
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
    gap: 2rem;
  }
}

.nav-link {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  color: var(--gray-700);
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}

.nav-link:hover,
.nav-link.active {
  color: var(--cyan-500);
}

.nav-link.active {
  border-bottom-color: var(--cyan-500);
}

/* Mobile Menu Button */
.menu-button {
  display: block;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray-700);
}

@media (min-width: 768px) {
  .menu-button {
    display: none;
  }
}

.menu-button svg {
  width: 24px;
  height: 24px;
}

/* Mobile Navigation */
.nav-mobile {
  display: none;
  padding: 1rem 0;
}

.nav-mobile.open {
  display: block;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none !important;
  }
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  border-bottom: none;
}

.nav-mobile .nav-link:hover {
  background-color: var(--gray-50);
}

.nav-mobile .nav-link.active {
  background-color: var(--cyan-50);
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(to right, var(--cyan-500), var(--cyan-700));
  color: var(--white);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 116, 144, 0.9), rgba(8, 145, 178, 0.9));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 768px;
}

.hero h1 {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #cffafe;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: var(--cyan-600);
}

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

.btn-secondary:hover {
  background-color: var(--cyan-50);
}

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

.btn-outline:hover {
  background-color: var(--white);
  color: var(--cyan-600);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.btn svg {
  margin-left: 0.5rem;
  width: 16px;
  height: 16px;
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-gray {
  background-color: var(--gray-50);
}

.section-title {
  font-size: 1.875rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
  }
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--gray-600);
  text-align: center;
  max-width: 672px;
  margin: 0 auto 3rem;
}

/* Cards */
.card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-image {
  width: 100%;
  height: 192px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-header {
  padding: 1.5rem 1.5rem 0;
}

.card-title {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
}

.card-content {
  padding: 1rem 1.5rem 1.5rem;
}

.card-description {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* CTA Section */
.cta-box {
  background-color: var(--cyan-500);
  border-radius: 16px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.cta-box h2 {
  font-size: 1.875rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .cta-box h2 {
    font-size: 2.25rem;
  }
}

.cta-box p {
  font-size: 1.25rem;
  color: #cffafe;
  margin-bottom: 2rem;
}

.cta-contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .cta-contacts {
    flex-direction: row;
  }
}

.cta-contacts a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.125rem;
}

.cta-contacts a:hover {
  text-decoration: underline;
}

.cta-divider {
  display: none;
  color: #67e8f9;
}

@media (min-width: 640px) {
  .cta-divider {
    display: inline;
  }
}

/* Why Choose Us */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--cyan-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.feature-icon span {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--cyan-600);
}

.feature-item h3 {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.feature-item p {
  color: var(--gray-600);
}

/* Footer */
.footer {
  background-color: var(--gray-900);
  color: var(--gray-300);
  padding: 3rem 0;
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer h3 {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact a {
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  font-size: 0.875rem;
  margin: 0;
}

/* About Page */
.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--gray-600);
}

.info-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.info-card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--gray-100);
}

.info-card-header h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
}

.info-card-body {
  padding: 1.5rem;
}

.info-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-100);
}

@media (min-width: 768px) {
  .info-row {
    grid-template-columns: 1fr 2fr;
  }
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  font-weight: bold;
  color: var(--gray-700);
}

/* Business List */
.business-list {
  list-style: none;
}

.business-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.business-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-color: var(--cyan-100);
  color: var(--cyan-600);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.business-content h3 {
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.business-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

/* Services Page */
.service-card {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: box-shadow 0.2s;
  min-height: 360px;
}

.service-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .service-card {
    flex-direction: row;
  }
}

.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .service-card-image {
    width: 40%;
    height: auto;
  }
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-card-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.service-card-content > p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-card-content h3 {
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

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

.service-details li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--gray-700);
}

.service-details .check {
  color: var(--cyan-500);
  margin-top: 2px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Testimonials Page */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: box-shadow 0.2s;
}

.testimonial-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 2fr;
  }
}

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

.contact-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-card-header {
  padding: 1.5rem 1.5rem 0;
}

.contact-card-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.contact-card-header p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.contact-card-body {
  padding: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

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

.contact-icon {
  width: 40px;
  height: 40px;
  background-color: var(--cyan-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  color: var(--cyan-600);
}

.contact-item-label {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.contact-item a {
  color: var(--cyan-600);
  font-weight: 500;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-item-note {
  font-size: 0.75rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
}

.business-hours-card {
  background-color: var(--cyan-50);
  border: 1px solid var(--cyan-100);
  border-radius: 12px;
  padding: 1.5rem;
}

.business-hours-card h3 {
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.business-hours-card p {
  font-size: 0.875rem;
  color: var(--gray-700);
  margin-bottom: 0.25rem;
}

.business-hours-card .note {
  font-size: 0.75rem;
  color: var(--gray-600);
  margin-top: 0.5rem;
}

/* Form Styles */
.form-card {
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-card-header {
  padding: 1.5rem 1.5rem 0;
}

.form-card-header h2 {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.form-card-header p {
  font-size: 0.875rem;
  color: var(--gray-600);
}

.form-card-body {
  padding: 1.5rem;
}

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

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

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

.form-group label .required {
  color: var(--red-500);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  background-color: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-note {
  background-color: var(--gray-50);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.form-note p {
  font-size: 0.75rem;
  color: var(--gray-600);
}

.btn-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: var(--cyan-500);
  color: var(--white);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: background-color 0.2s;
}

.btn-submit:hover {
  background-color: var(--cyan-600);
}

.btn-submit:disabled {
  background-color: var(--gray-300);
  cursor: not-allowed;
}

/* Success Message */
.success-message {
  text-align: center;
  padding: 3rem;
}

.success-icon {
  width: 64px;
  height: 64px;
  color: var(--green-500);
  margin: 0 auto 1rem;
}

.success-message h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--gray-600);
}

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

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-8 {
  margin-top: 2rem;
}

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

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

/* Service Detail Page */
.detail-hero {
  position: relative;
  background: linear-gradient(to right, var(--cyan-500), var(--cyan-700));
  color: var(--white);
  padding: 4rem 0;
  overflow: hidden;
}

.detail-hero-bg {
  position: absolute;
  inset: 0;
}

.detail-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(14, 116, 144, 0.9), rgba(8, 145, 178, 0.85));
}

.detail-hero-content {
  position: relative;
  z-index: 10;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cyan-100);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: var(--white);
}

.detail-hero h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .detail-hero h1 {
    font-size: 2.5rem;
  }
}

.detail-hero p {
  font-size: 1.125rem;
  color: var(--cyan-100);
  max-width: 600px;
}

.detail-section {
  margin-bottom: 3rem;
}

.detail-section h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cyan-500);
}

.detail-section > p {
  color: var(--gray-600);
  line-height: 1.8;
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-list-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background-color: var(--gray-50);
  border-radius: 12px;
  transition: box-shadow 0.2s;
}

.detail-list-item:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.detail-list-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background-color: var(--cyan-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-list-icon svg {
  color: var(--cyan-600);
}

.detail-list-content h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.detail-list-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Clickable Card Links */
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}

.card-link:hover {
  transform: translateY(-4px);
}

.card-link .card {
  cursor: pointer;
}

.service-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service-card-link .service-card {
  cursor: pointer;
}
