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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--bg-color);
  overflow-x: hidden;
}

:root {
  --primary-color: #2a5bd7;
  --secondary-color: #1abc9c;
  --bg-color: #ffffff;
  --light-gray: #f7f8fc;
  --dark-color: #333333;
  --text-color: #333333;
  --shadow-color: rgba(0, 0, 0, 0.1);
}

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

.section {
  padding: 4rem 0;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
}

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

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px var(--shadow-color);
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

nav .logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
}

nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

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

nav .nav-links ul li a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav .nav-links ul li a:hover,
nav .nav-links ul li a:focus {
  color: var(--primary-color);
}

nav .nav-links ul li a.active {
  color: var(--primary-color);
  font-weight: 600;
}

.lang-toggle {
}

.lang-selector {
  position: relative;
}

.lang-selector button {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--dark-color);
  cursor: pointer;
  padding: 0.25rem 0.5rem;
}

.lang-selector button .arrow {
  border: solid var(--dark-color);
  border-width: 0 1px 1px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.lang-selector .dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  background-color: var(--bg-color);
  box-shadow: 0 4px 6px var(--shadow-color);
  border-radius: 4px;
  padding: 0.5rem 0;
  z-index: 1000;
  min-width: 140px;
}

.lang-selector .dropdown.open {
  display: block;
}

.lang-selector .dropdown a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  color: var(--dark-color);
  text-decoration: none;
  font-size: 0.95rem;
}

.lang-selector .dropdown a:hover {
  background-color: var(--light-gray);
}

.flag {
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background-color: var(--dark-color);
  transition: 0.4s;
  border-radius: 2px;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('hero.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 0 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero .btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background-color: var(--secondary-color);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.hero .btn:hover,
.hero .btn:focus {
  background-color: var(--primary-color);
}

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

.service-card {
  background-color: var(--light-gray);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 6px var(--shadow-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 12px var(--shadow-color);
}

.service-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--dark-color);
}

.service-card p {
  font-size: 1rem;
  color: var(--dark-color);
  line-height: 1.5;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--dark-color);
  line-height: 1.6;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--light-gray);
  padding: 1.2rem 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px var(--shadow-color);
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-4px);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--dark-color);
}

.feature-item p {
  font-size: 0.95rem;
  color: var(--dark-color);
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

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

.portfolio .project-placeholder {
  background-color: var(--light-gray);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form form {
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 1rem;
}

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

.contact-form button {
  padding: 0.8rem;
  border: none;
  background-color: var(--primary-color);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form button:hover,
.contact-form button:focus {
  background-color: var(--secondary-color);
}

footer {
  background-color: var(--light-gray);
  padding: 2rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--dark-color);
}

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

@media (max-width: 768px) {
  nav .nav-links ul {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    padding-top: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }

  nav .nav-links ul.open {
    transform: translateX(0);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 245, 245, 0.98));
  }

  nav .nav-links {
    gap: 0.5rem;
  }

  nav .nav-links ul li {
    width: 80%;
    text-align: center;
  }

  nav .nav-links ul li a {
    display: block;
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.25s ease;
  }

  nav .nav-links ul li a:hover,
  nav .nav-links ul li a:focus,
  nav .nav-links ul li a.active {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }

  .menu-toggle {
    display: flex;
  }
}

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

.feature {
  background: var(--light-gray);
  padding: 2rem;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color);
}

.feature i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.reviews {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.review-card {
  background: var(--light-gray);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 6px var(--shadow-color);
  font-style: italic;
}

.cta {
  background: var(--primary-color);
  color: #fff;
  padding: 3rem 1rem;
  border-radius: 8px;
}

.cta .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 1.6rem;
  background: #fff;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cta .btn:hover,
.cta .btn:focus {
  background: var(--secondary-color);
  color: #fff;
}

@media (max-width: 768px) {
  .steps {
    justify-content: center;
  }
}

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

.card {
  background: var(--bg-color);
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--shadow-color);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-image {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-size: cover;
  background-position: center;
  background-color: var(--light-gray);
}

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

.card-body h3 {
  margin-bottom: 0.4rem;
  color: var(--dark-color);
  font-size: 1.15rem;
}

.card-body p {
  margin-bottom: 0.8rem;
  color: var(--dark-color);
}

.btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-color);
}

.btn-link:hover {
  text-decoration: underline;
}

.btn-outline {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn-outline:hover,
.btn-outline:focus {
  background: var(--primary-color);
  color: #fff;
}

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

.pricing-card {
  background: var(--light-gray);
  border-radius: 12px;
  box-shadow: 0 6px 16px var(--shadow-color);
  padding: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.pricing-card.featured {
  background: #fff;
  border: 2px solid var(--primary-color);
  transform: translateY(-4px);
}

.pricing-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.price span {
  font-size: 1.25rem;
  vertical-align: super;
}

.pricing-card .features {
  list-style: none;
  margin: 0 0 1rem 0;
  padding: 0;
}

.pricing-card .features li {
  padding-left: 1.2rem;
  position: relative;
  margin: 0.4rem 0;
}

.pricing-card .features li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .card-body p {
    font-size: 0.95rem;
  }
}

.process-alt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.process-item {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.process-item.right {
  justify-content: flex-end;
}

.process-content {
  position: relative;
  width: 45%;
  background: linear-gradient(135deg, var(--light-gray), #fff);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.process-content:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.process-content h3 {
  color: var(--dark-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.process-content p {
  color: var(--dark-color);
  line-height: 1.6;
  font-size: 1rem;
}

.process-content .icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1);
}

.process-alt::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  transform: translateX(-50%);
  opacity: 0.3;
}

.process-item.left .process-content::before,
.process-item.right .process-content::before {
  content: "";
  position: absolute;
  top: 30px;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
}

.process-item.left .process-content::before {
  right: -25px;
}

.process-item.right .process-content::before {
  left: -25px;
}

@media (max-width: 900px) {
  .process-content {
    width: 100%;
  }
  .process-item,
  .process-item.right {
    justify-content: center;
  }
  .process-alt::before {
    left: 12px;
  }
  .process-content::before {
    display: none;
  }
}

.footer {
  background: var(--dark-color);
  color: #fff;
  padding: 3rem 0 1.5rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer a:hover,
.footer a:focus {
  color: var(--secondary-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  opacity: 0.85;
  margin-bottom: 1rem;
  max-width: 320px;
}

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

.social-links a {
  font-size: 1.2rem;
  color: #fff;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin: 0.4rem 0;
}

.footer-btn {
  margin-top: 1rem;
  padding: 0.7rem 1.4rem;
  background: var(--secondary-color);
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 2rem;
  padding-top: 1.2rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.footer-bottom a {
  color: var(--secondary-color);
  font-weight: 500;
}

@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .social-links {
    justify-content: center;
  }
  .footer-brand p {
    margin: 0 auto 1rem;
  }
}

.hero-services {
  padding: 5rem 0 3rem;
  text-align: center;
}

.hero-services h1 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.hero-services p {
  max-width: 820px;
  margin: 0 auto;
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero-services .hero-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-services .hero-subnote {
  max-width: 780px;
  margin: 1.2rem auto 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.hero-services.hero-bellevue {
  position: relative;
  padding: 7rem 0 5rem;
  text-align: center;
  color: #fff;
  background-image:
    linear-gradient(rgba(10, 25, 60, 0.7), rgba(10, 25, 60, 0.7)),
    url('/img/bellevue-hero.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-services.hero-bellevue .container {
  max-width: 860px;
}

.hero-services.hero-bellevue h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-services.hero-bellevue p {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.hero-services.hero-bellevue .hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-services.hero-bellevue .btn-outline {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid #fff;
  color: #fff;
  backdrop-filter: blur(4px);
}

.hero-services.hero-bellevue .btn-outline:hover,
.hero-services.hero-bellevue .btn-outline:focus {
  background: #fff;
  color: var(--primary-color);
}

.hero-services.hero-bellevue .hero-subnote {
  font-size: 0.95rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-services.hero-bellevue {
    padding: 5rem 1.2rem 3rem;
  }
  .hero-services.hero-bellevue h1 {
    font-size: 1.9rem;
  }
  .hero-services.hero-bellevue p {
    font-size: 1.05rem;
  }
}

#bellevue-market .summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

#bellevue-market .summary-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 6px 14px var(--shadow-color);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#bellevue-market .summary-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--dark-color);
}

#bellevue-market .summary-item p {
  font-size: 0.97rem;
  line-height: 1.65;
  color: var(--dark-color);
}

#bellevue-market .summary-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px var(--shadow-color);
}

#bellevue-services .section-head,
#bellevue-seo .section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 1.7rem;
}

#bellevue-services .section-head p,
#bellevue-seo .section-head p {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-muted);
}

#bellevue-services .grid-2,
#bellevue-seo .grid-3 {
  gap: 1.4rem;
}

#bellevue-services .card.detail,
#bellevue-seo .card.detail {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 1.8rem 1.9rem;
  box-shadow: 0 6px 14px var(--shadow-color);
}

#bellevue-services .card.detail h3,
#bellevue-seo .card.detail h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

#bellevue-services .card.detail p,
#bellevue-seo .card.detail p {
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}

#bellevue-services .card.detail ul,
#bellevue-seo .card.detail ul {
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.2rem;
}

#bellevue-areas .areas-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

#bellevue-areas .areas-list li {
  font-size: 0.95rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 4px 10px var(--shadow-color);
}

#bellevue-results .stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

#bellevue-results .stat-card {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 1.9rem 1.7rem;
  box-shadow: 0 6px 14px var(--shadow-color);
  text-align: center;
}

#bellevue-results .stat-value {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.4rem;
}

#bellevue-results .stat-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-color);
}

#bellevue-results .stats-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

#bellevue-faq .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.5rem;
}

#bellevue-faq .faq-item {
  background-color: var(--light-gray);
  border-radius: 10px;
  padding: 1.4rem 1.5rem;
  box-shadow: 0 4px 10px var(--shadow-color);
}

#bellevue-faq .faq-item summary {
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--dark-color);
}

#bellevue-faq .faq-item p {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-color);
}
#seattle-dev .grid-2,
#seattle-seo .grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.8rem;
  align-items: stretch;
}

#seattle-dev .card.detail,
#seattle-seo .card.detail {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 1.6rem 1.8rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#seattle-dev .card.detail h3,
#seattle-seo .card.detail h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

#seattle-dev .card.detail p,
#seattle-seo .card.detail p {
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 0.7rem;
}

#seattle-dev .card.detail ul,
#seattle-seo .card.detail ul {
  margin-top: 0.4rem;
  padding-left: 1.1rem;
  font-size: 0.94rem;
  line-height: 1.6;
}

#seattle-dev .card.detail ul li,
#seattle-seo .card.detail ul li {
  margin-bottom: 0.25rem;
}

@media (max-width: 768px) {
  #seattle-dev .card.detail,
  #seattle-seo .card.detail {
    padding: 1.4rem 1.3rem;
    border-radius: 12px;
  }

  #seattle-dev .card.detail h3,
  #seattle-seo .card.detail h3 {
    font-size: 1.02rem;
  }

  #seattle-dev .card.detail p,
  #seattle-seo .card.detail p,
  #seattle-dev .card.detail ul,
  #seattle-seo .card.detail ul {
    font-size: 0.92rem;
  }
}


#seattle-areas {
  background-color: var(--bg-section-alt, #f4f6fb);
}

#seattle-areas .areas-list {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
}

#seattle-areas .areas-list li {
  font-size: 0.95rem;
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 4px 10px var(--shadow-color);
}
