/* Alakuijala.fi - Main Stylesheet */
/* CSS Custom Properties for easy theming */
:root {
  --primary-color: #facc15;
  --primary-hover: #fbbf24;
  --primary-dark: #f59e0b;
  --background-dark: #0f172a;
  --background-card: #1e293b;
  --text-primary: #ffffff;
  --text-secondary: #cbd5e1;
  --text-dark: #0f172a;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container utility */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: var(--text-dark);
  padding: 8px;
  border-radius: 4px;
  text-decoration: none;
  z-index: 1000;
  font-weight: 600;
}

.skip-link:focus {
  top: 6px;
}

/* E-office button */
.eoffice-btn {
  position: fixed;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  color: white;
  padding: 0.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.7rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.1;
}

.eoffice-btn:hover,
.eoffice-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.eoffice-btn:active {
  transform: translateY(-1px);
}

/* Header styles */
.header {
  position: relative;
  padding: 1rem 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header__content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

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

.header__logo img {
  height: 60px;
  width: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.header__logo img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Navigation styles */
.nav {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  position: fixed;
  right: 2rem;
  top: 1rem;
  z-index: 1000;
}

@media (min-width: 1200px) {
  .nav {
    right: 3rem;
  }
}

.nav__list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav__link:hover,
.nav__link:focus {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.nav__link:active {
  transform: translateY(0);
}

.nav__link--active {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
  box-shadow: var(--shadow-md);
  position: relative;
}

.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  background: var(--primary-color);
  border: none;
  border-radius: var(--border-radius);
  padding: 0.75rem;
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 1001;
}

.nav__toggle:hover {
  background: var(--primary-hover);
  box-shadow: var(--shadow-lg);
}

/* Hero section */
.hero {
  min-height: calc(100vh - 92px);
  background-image: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.01) 0%,
    rgba(30, 41, 59, 0.005) 50%,
    rgba(15, 23, 42, 0.02) 100%
  ),
  url('../img/desktop/Kuva7.jpg');
  background-size: cover, cover;
  background-position: center bottom, center bottom;
  background-attachment: fixed, fixed;
  background-repeat: no-repeat, no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0 6rem 0;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(250, 204, 21, 0.005) 0%, transparent 50%);
  pointer-events: none;
}

.hero__content {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius-lg);
  padding: clamp(2rem, 5vw, 4rem);
  max-width: 800px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

.hero__title {
  font-size: clamp(1.875rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.hero__cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.hero__cta:hover::before {
  left: 100%;
}

.hero__cta:hover,
.hero__cta:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.3);
}

.hero__cta:active {
  transform: translateY(-1px);
}

/* Utility classes */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

/* Responsive design */

/* Tablet landscape */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav {
    right: 1.5rem;
    gap: 0.35rem;
  }

  .nav__link {
    padding: 0.65rem 1.2rem;
    font-size: 0.85rem;
  }

  .eoffice-btn {
    width: 38px;
    height: 38px;
    font-size: 0.65rem;
    top: 0.85rem;
    left: 0.85rem;
  }

  .hero__content {
    max-width: 700px;
    padding: 3rem 2.5rem;
  }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
  .eoffice-btn {
    display: none;
  }

  .header {
    position: sticky;
    top: 0;
    z-index: 999;
  }

  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 1rem;
    position: relative;
    width: 100%;
  }

  .header__logo {
    order: 1;
    flex-shrink: 0;
  }

  .nav {
    order: 2;
    position: static;
    transform: none;
    right: auto;
    top: auto;
    flex: 1;
    justify-content: flex-end;
  }

  .header__logo img {
    height: 45px;
  }

  .nav__list {
    display: none;
    position: fixed;
    top: 77px;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 0;
    border-radius: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 998;
    max-height: calc(100vh - 77px);
    overflow-y: auto;
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__toggle {
    display: block;
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
    white-space: nowrap;
  }

  .nav__link {
    width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 0;
    background: transparent;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    transition: all 0.2s ease;
  }

  .nav__link:last-child {
    border-bottom: none;
  }

  .nav__link:hover,
  .nav__link:focus {
    background: rgba(250, 204, 21, 0.15);
    color: var(--primary-color);
    transform: none;
    padding-left: 2rem;
  }

  .nav__link:active {
    background: rgba(250, 204, 21, 0.25);
  }

  .hero {
    background-attachment: scroll;
    min-height: 100dvh;
    padding: 3rem 0 2rem 0;
    align-items: center;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.01) 0%,
      rgba(30, 41, 59, 0.005) 50%,
      rgba(15, 23, 42, 0.02) 100%
    ),
    url('../img/mobile/Kuva7.jpg');
    background-size: cover;
    background-position: center center;
  }

  .hero__content {
    margin: 0 1rem;
    padding: 2.5rem 1.75rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }

  .hero__title {
    font-size: clamp(1.75rem, 5.5vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    font-size: clamp(1rem, 3.5vw, 1.15rem);
    margin-bottom: 2rem;
    line-height: 1.6;
  }

  .hero__cta {
    padding: 1.15rem 2.5rem;
    font-size: 1.05rem;
    width: 100%;
    max-width: 320px;
    text-align: center;
    justify-content: center;
  }
}

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

  .header {
    padding: 0.75rem 0;
  }

  .header__logo img {
    height: 40px;
  }

  .nav__list {
    top: 69px;
    max-height: calc(100vh - 69px);
  }

  .nav__toggle {
    font-size: 0.85rem;
    padding: 0.6rem 1rem;
  }

  .hero {
    min-height: 100dvh;
    padding: 2.5rem 0 1.5rem 0;
    background: linear-gradient(
      135deg,
      rgba(15, 23, 42, 0.01) 0%,
      rgba(30, 41, 59, 0.005) 50%,
      rgba(15, 23, 42, 0.02) 100%
    ),
    url('../img/mobile/Kuva7.jpg');
    background-size: cover;
    background-position: center center;
  }

  .hero__content {
    margin: 0 0.75rem;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.35);
  }

  .hero__title {
    font-size: clamp(1.5rem, 6.5vw, 2rem);
    margin-bottom: 1rem;
    line-height: 1.15;
  }

  .hero__subtitle {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    margin-bottom: 1.75rem;
    line-height: 1.5;
  }

  .hero__cta {
    padding: 1rem 2rem;
    font-size: 1rem;
    width: 100%;
    max-width: 300px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .nav__list {
    top: 65px;
    max-height: calc(100vh - 65px);
  }

  .nav__toggle {
    font-size: 0.8rem;
    padding: 0.5rem 0.85rem;
  }

  .hero__content {
    margin: 0 0.5rem;
    padding: 1.75rem 1.25rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.22);
  }

  .hero__title {
    font-size: 1.4rem;
  }

  .hero__subtitle {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .hero__cta {
    padding: 0.95rem 1.75rem;
    font-size: 0.95rem;
    max-width: 280px;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero__content {
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid var(--primary-color);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero {
    background-attachment: scroll;
  }
}

/* Print styles */
@media print {
  .nav,
  .hero__cta,
  .eoffice-btn {
    display: none;
  }

  .hero {
    background: none;
    color: black;
  }

  .hero__content {
    background: none;
    box-shadow: none;
    border: 1px solid black;
  }
}

/* Footer styles */
.footer {
  background: rgba(15, 23, 42, 0.95);
  padding: 1rem 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__text {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer__link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.footer__link:hover,
.footer__link:focus {
  color: var(--primary-hover);
}

/* Content section - Yritys-sivun tyylit */
.content {
  padding: 4rem 0;
  background: var(--background-dark);
}

.content__inner {
  max-width: 800px;
  margin: 0 auto;
}

.content__card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.content__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.content__title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--primary-color);
  text-align: center;
}

.content__text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.content__text:last-child {
  margin-bottom: 0;
}

/* Highlight box */
.highlight-box {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
  border: 1px solid rgba(250, 204, 21, 0.2);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 2rem 0;
  position: relative;
}

.highlight-box::before {
  content: '✨';
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--background-dark);
  padding: 0 10px;
  font-size: 1.2rem;
}

/* Contact section - Yhteystiedot-sivun tyylit */
.contact {
  padding: 4rem 0;
  background: var(--background-dark);
}

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

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.contact-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-card__content {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  white-space: pre-line;
}

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

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

/* Services section - Palvelukorttien tyylit */
.services {
  padding: 4rem 0;
  background: var(--background-dark);
  position: relative;
  z-index: 2;
}

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

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card--with-image {
  padding: 0;
}

.service-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
  transition: var(--transition);
}

.service-card__content {
  padding: 2rem;
}

.service-card--with-image:hover .service-card__image {
  transform: scale(1.05);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  padding: 8px;
}

.service-card__icon svg {
  width: 100%;
  height: 100%;
  fill: var(--text-dark);
}

.service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-card__description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Back button */
.back-section {
  padding: 3rem 0;
  text-align: center;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.back-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.back-btn:hover::before {
  left: 100%;
}

.back-btn:hover,
.back-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(250, 204, 21, 0.3);
}

/* Responsive: Palvelukorttien mobiilityylit */
@media (max-width: 1024px) and (min-width: 769px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .services {
    padding: 3rem 0;
  }

  .services__grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card__content {
    padding: 1.5rem;
  }

  .service-card__image {
    height: 150px;
  }

  .content {
    padding: 1.5rem 0;
  }

  .content__card {
    margin: 0 1rem;
    padding: 2rem 1.5rem;
  }

  .content__title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .content__text {
    font-size: 1rem;
    line-height: 1.7;
  }

  .highlight-box {
    margin: 1.5rem 0;
    padding: 1.25rem;
  }

  .contact {
    padding: 1.5rem 0;
  }

  .contact__grid {
    gap: 1.5rem;
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .service-card {
    padding: 1.5rem;
  }

  .service-card__content {
    padding: 1.5rem;
  }

  .service-card__image {
    height: 140px;
  }

  .content__card {
    padding: 1.5rem 1.25rem;
  }

  .content__title {
    font-size: 1.35rem;
  }

  .contact-card {
    padding: 1.25rem;
  }

  .back-btn {
    padding: 0.95rem 2.25rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 360px) {
  .service-card {
    padding: 1.25rem;
  }

  .service-card__image {
    height: 120px;
  }
}
