body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f5faff;
  color: #222;
  margin: 0;
  padding: 0;
}

.site-header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 56px;
  filter: drop-shadow(0 2px 8px rgba(30, 144, 255, 0.12));
}

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

.nav-list a {
  text-decoration: none;
  color: #1761a0;
  font-weight: 600;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.nav-list .cta-btn {
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  border-radius: 28px;
  padding: 0.6em 1.6em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
  border: none;
  font-size: 1.1rem;
  transition: background 0.2s;
}

.nav-list .cta-btn:hover {
  background: #1761a0;
}

.menu-btn {
  display: none;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-dropdown {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lang-btn .flag-icon {
    position: relative;
    right: -6px;
    width: 32px;
    height: 32px;
    /* border-radius: 10px; */
    object-fit: cover;
    /* border: 2px solid #ddd; */
    transition: border-color 0.2s;
}

.lang-btn:hover .flag-icon {
    border-color: #1761a0;
}

.lang-options {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: -15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem;
    z-index: 1000;
    list-style: none;
    margin: 0;
}

.lang-dropdown.active .lang-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* Gap between flags */
}

.lang-option {
    display: block;
    text-decoration: none;
}

.lang-option .flag-icon {
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    object-fit: cover;
    transition: transform 0.2s;
}

.lang-option:hover .flag-icon {
    transform: scale(1.1);
}

@media (max-width: 900px) {
  .language-selector {
    margin-right: 1rem;
    order: -1;
  }
  .lang-options {
    right: auto;
    left: 0;
  }
}

/* === Modern Hero Section === */
.hero {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(rgba(23, 97, 160, 0.45), rgba(255, 79, 129, 0.18)), url('../images/hero2.jpg') center/cover no-repeat;
  min-height: calc(100vh - 146px);
}

.hero-text-container {
  max-width: 600px;
}

.hero-text-content {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
}

.hero-text-content h1 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1761a0;
  margin-bottom: 1rem;
}

.hero-text-content .accent {
  color: #ff4f81;
}

.hero-text-content p {
  font-size: 1.1rem;
  color: #1761a0;
  font-weight: 500;
  margin: 1.1rem 0 1.7rem 0;
}

.hero-sub {
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  border-radius: 16px;
  padding: 0.3em 1em;
  font-weight: 700;
  margin-left: .7em;
  font-size: 1em;
}

.hero-cta-form {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.hero-cta-form input[type="text"] {
  padding: 1em;
  border-radius: 20px;
  border: 1.5px solid #1e90ff;
  font-size: 1.1rem;
  outline: none;
  background: #f6f8fa;
  color: #222;
  transition: border 0.18s;
}

.hero-cta-btn {
  border: none;
  border-radius: 20px;
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 1em 1.8em;
  cursor: pointer;
  transition: background 0.18s;
}

.hero-cta-btn:hover {
  background: #1761a0;
}

.promise {
  max-width: 1100px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
  text-align: center;
}

.promise-subtitle {
  color: #5fa8d3;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.promise-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
  margin-top: 0;
}

.promise-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.promise-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.promise-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.18);
}

.promise-icon {
  height: 56px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 2px 8px rgba(30, 144, 255, 0.10));
}

.promise-card h3 {
  color: #1761a0;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.promise-card p {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 900px) {
  .promise-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .promise-card {
    max-width: 98vw;
  }

  .promise-title {
    font-size: 2rem;
  }
}

/* Szolgáltatások */
.services {
  max-width: 1100px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
  text-align: center;
}

.services-subtitle {
  color: #5fa8d3;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.services-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 2.5rem;
}

.service-cards {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
}

.service-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
  padding: 2.2rem 1.5rem 1.7rem 1.5rem;
  text-align: center;
  flex: 1 1 270px;
  min-width: 250px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.18);
}

.service-icon {
  height: 56px;
  width: 56px;
  margin-bottom: 1.2rem;
  background: #f5faff;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card h3 {
  color: #1761a0;
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.service-card p {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
}

@media (max-width: 900px) {
  .service-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }

  .service-card {
    max-width: 98vw;
  }

  .services-title {
    font-size: 2rem;
  }
}

.about {
  max-width: 1100px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
  text-align: center;
}

.about-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
  padding: 2.5rem 2rem 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-header {
  margin-bottom: 2.2rem;
}

.about-subtitle {
  color: #5fa8d3;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  display: block;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 900;
  color: #222;
  letter-spacing: -0.02em;
  margin-top: 0;
  margin-bottom: 0;
}

.about-content-flex {
  display: flex;
  gap: 2.5rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about-text {
  flex: 1 1 340px;
  text-align: left;
  font-size: 1.08rem;
  color: #222;
  font-weight: 500;
}

.about-text .cta-btn {
  display: block;
  margin-top: 20px;
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  border-radius: 28px;
  padding: 0.6em 1.6em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
  border: none;
  font-size: 1.1rem;
  transition: background 0.2s;
  text-decoration: none;
  width: 220px;
}

.about-text .cta-btn:hover {
  background: #1761a0;
}

.about-image {
  flex: 1 1 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(30, 144, 255, 0.10);
}

@media (max-width: 900px) {
  .about-content-flex {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-title {
    font-size: 2rem;
  }

  .about-card {
    padding: 1.5rem 0.7rem;
  }

  .about-image img {
    max-width: 98vw;
  }
}

/* How it works */
.how {
  max-width: 1000px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
}

.how h2 {
  font-size: 2rem;
  color: #1761a0;
  font-weight: 800;
  margin-bottom: 2rem;
}

.how-steps {
  display: flex;
  gap: 2.2rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.how-step {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.08);
  padding: 1.7rem 1rem;
  flex: 1 1 170px;
  min-width: 170px;
  text-align: center;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.how-step span {
  display: inline-block;
  background: #ffb347;
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  border-radius: 50%;
  width: 2.3em;
  height: 2.3em;
  line-height: 2.3em;
  margin-bottom: 0.8em;
}

.reviews {
  max-width: 900px;
  margin: 4rem auto 2rem auto;
  padding: 0 2vw;
}

.reviews h2 {
  color: #1761a0;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
}

.review-cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.review-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(30, 144, 255, 0.08);
  padding: 1.4rem 1.1rem;
  font-size: 1rem;
  color: #333;
  min-width: 230px;
  flex: 1 1 230px;
  font-weight: 500;
}

.cta {
  background: linear-gradient(120deg, #1e90ff 0%, #ffb347 100%);
  margin: 3rem 0 0 0;
  padding: 3rem 0;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.cta-content .cta-btn {
  background: #fff;
  color: #1e90ff;
  padding: 1em 2.5em;
  border-radius: 32px;
  font-size: 1.2rem;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
  border: none;
}

.cta-content .cta-btn:hover {
  background: #ff4f81;
  color: #fff;
}

/* Service Area Section */
.service-area {
  background: #fff;
  padding: 4rem 2vw;
  text-align: center;
}

.service-area-content {
  max-width: 1200px;
  margin: 0 auto;
}

.service-area h2 {
  color: #1761a0;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.service-area-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.service-area-text {
  text-align: left;
}

.service-area-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

.service-area-text p strong {
  color: #1761a0;
  font-weight: 600;
}

.service-area-cta {
  margin-top: 1rem;
}

.service-area-cta .cta-btn {
  background: linear-gradient(90deg, #ffb347 0%, #ff4f81 100%);
  color: #fff;
  border-radius: 28px;
  padding: 0.8em 2em;
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
  border: none;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.service-area-cta .cta-btn:hover {
  background: #1761a0;
}

@media (max-width: 900px) {
  .service-area h2 {
    font-size: 2rem;
  }
  
  .service-area-text p {
    font-size: 1rem;
  }
}

/* Zip Message Styles */
.zip-message {
  animation: slideDown 0.3s ease-out;
}

.zip-message.success {
  background: #4CAF50 !important;
}

.zip-message.error {
  background: #f44336 !important;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.footer {
  background: #181c24;
  color: #fff;
  padding: 2rem 0 1.2rem 0;
  text-align: center;
}

.footer-main {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  height: 38px;
  margin-bottom: 0.6rem;
}

.footer-socials {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}

.footer-socials img {
  height: 28px;
  width: 28px;
  filter: grayscale(0.15) brightness(1);
  transition: filter 0.18s, transform 0.18s;
}

.footer-socials img:hover {
  filter: grayscale(0) brightness(1.15);
  transform: scale(1.10) rotate(-6deg);
}

/* --- Responsive Hero Section --- */
@media (max-width: 900px) {
  .hero {
    justify-content: center;
  }

  .hero-flex {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 4vw 1.5rem 4vw;
    gap: 1.5rem;
    min-height: unset;
  }

  .hero-content {
    max-width: 100vw;
    width: 100%;
    padding: 1.5rem 1.2rem;
    border-radius: 20px;
  }

  .hero-img-wrap {
    width: 100%;
    justify-content: flex-start;
    margin-top: 0.5rem;
  }

  .hero-img {
    max-width: 98vw;
    border-radius: 16px;
  }
}

@media (max-width: 600px) {
  .redesigned-hero {
    min-height: 0;
    padding: 0;
    background-position: center;
  }

  .hero-flex {
    padding: 1.2rem 2vw 1.2rem 2vw;
    gap: 1rem;
  }

  .hero-content {
    padding: 1.1rem 0.7rem;
    font-size: 1rem;
  }

  .hero-content h1 {
    font-size: 1.3rem;
  }

  .hero-img {
    max-width: 100vw;
    border-radius: 12px;
  }
}

/* --- General Responsive Polish --- */
@media (max-width: 600px) {

  .services,
  .how,
  .reviews,
  .footer-main {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .service-cards,
  .review-cards,
  .how-steps {
    gap: 0.7rem;
  }

  .service-card,
  .review-card,
  .how-step {
    padding: 1.1rem 0.7rem;
    border-radius: 14px;
  }

  .footer-logo {
    height: 28px;
  }

  .footer-socials img {
    height: 22px;
    width: 22px;
  }
}

@keyframes fadeInHero {
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes menuFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .nav {
    position: relative;
    padding: 1rem 2vw;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    position: absolute;
    top: 70px;
    right: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 8px 32px rgba(30, 144, 255, 0.12);
    border-radius: 0 0 18px 18px;
    padding: 1.5rem 2rem;
    z-index: 200;
    min-width: 180px;
    transition: opacity 0.25s, transform 0.25s;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
  }

  .nav-list.open {
    display: flex;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    animation: menuFadeIn 0.3s cubic-bezier(.4, 0, .2, 1);
  }

  .menu-btn {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #1761a0;
    cursor: pointer;
    z-index: 300;
    margin-left: 1rem;
  }
}

@media (min-width: 901px) {
  .menu-btn {
    display: none !important;
  }

  .nav-list {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 700px) {
  .hero-inner {
    padding: 1.5rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
  }

  .hero-text-content h1 {
    font-size: 1.5rem;
  }

  .hero-cta-form {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-cta-form input[type="text"],
  .hero-cta-btn {
    font-size: 1rem;
    padding: 0.8em 1em;
  }
}

.service-cards-modern {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin: 3rem 0;
}

.service-cards-modern-row {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

.service-card-modern {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(30, 144, 255, 0.10);
  padding: 2.5rem 2rem;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  align-items: stretch;
}

.service-card-content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.service-card-label {
  color: #5fa8d3;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.service-card-title {
  font-size: 2.1rem;
  font-weight: 900;
  color: #222;
  margin: 0 0 1.2rem 0;
}

.service-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.7rem 0;
}

.service-card-list li {
  font-size: 1.13rem;
  color: #222;
  font-weight: 500;
  margin-bottom: 0.7rem;
  display: flex;
  align-items: center;
}

.checkmark {
  color: #1e90ff;
  font-size: 1.2em;
  margin-right: 0.7em;
}

.service-card-btn {
  margin-top: auto;
  background: #ff4f4f;
  color: #fff;
  border-radius: 28px;
  padding: 0.7em 2.2em;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(255, 79, 129, 0.08);
  transition: background 0.2s;
  display: inline-block;
}

.service-card-btn:hover {
  background: #1761a0;
}

.service-card-img {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card-img img {
  max-width: 120px;
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30, 144, 255, 0.07);
}

@media (max-width: 900px) {
  .service-card-modern {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem 1rem;
  }

  .service-card-img img {
    max-width: 90px;
  }

  .service-card-title {
    font-size: 1.3rem;
  }
}

.services-bubble {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.13);
  padding: 2.7rem 2.5rem 2.5rem 2.5rem;
  max-width: 1200px;
  margin: 3rem auto;
}

.services-bubble-title {
  color: #222;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 2.2rem;
  /* text-transform: uppercase; */
  text-align: center;
}
@media (max-width: 600px) {
  .services-bubble-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 900px) {
  .service-cards-modern-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-bubble {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

/* Service Selector Styles */
.service-selector {
  padding: 2rem 0;
  background-color: var(--light-bg);
  text-align: center;
}

.service-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.service-tab {
  padding: 1rem 2rem;
  border: 2px solid var(--primary-color);
  border-radius: 50px;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active {
  background: var(--primary-color);
  color: white;
}

/* Service Content Styles */
.service-content {
  display: none;
  padding: 2rem 0;
}

.service-content.active {
  display: block;
}

.service-intro {
  text-align: center;
  margin-bottom: 3rem;
}

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

.service-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
}

.service-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 1rem;
}

.service-process {
  padding: 4rem 2rem;
  background-color: var(--light-bg);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 0;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.step-number {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  margin-bottom: 1rem;
}

.service-benefits {
  padding: 4rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list,
.offerings-list {
  list-style: none;
  padding: 0;
}

.benefits-list li,
.offerings-list li {
  margin: 1rem 0;
  font-size: 1.1rem;
}

.service-pricing {
  padding: 4rem 2rem;
  background-color: var(--light-bg);
  text-align: center;
}

.pricing-info {
  max-width: 600px;
  margin: 2rem auto;
}

.service-promo {
  padding: 4rem 2rem;
  text-align: center;
}

.promo-card {
  background: var(--primary-color);
  color: white;
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  margin: 2rem auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .service-tabs {
    flex-direction: column;
    padding: 0 1rem;
  }

  .service-tab {
    width: 100%;
  }

  .service-intro h1 {
    font-size: 2rem;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}
/* Footer Styles */
.footer-edited-by {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0.3rem;
  text-align: center;
  font-weight: 500;
}

.footer-edited-by a,
.footer a {
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.18s;
}

.footer-edited-by a:hover,
.footer a:hover {
  color: #ffb347;
}

.footer-social-links {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-social-icon {
  color: #fff;
  font-size: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s, transform 0.18s, filter 0.18s;
  text-decoration: none;
  border-radius: 50%;
  padding: 0.2em;
}

.footer-social-icon:hover {
  color: #ffb347;
  filter: drop-shadow(0 2px 8px #ffb347);
  transform: scale(1.13) rotate(-6deg);
}

.footer-socials img {
  display: none !important;
}

#facebook-link {
  text-decoration: none !important;
}

#facebook-link:hover {
  color: #3246b3;
  filter: drop-shadow(0 2px 8px #003cff);
}

#linkedin-link {
  text-decoration: none !important;
}

#linkedin-link:hover {
  color: #0077b5;
  filter: drop-shadow(0 2px 8px #0077b5);
}

#instagram-link {
  text-decoration: none !important;
}

#instagram-link:hover {
  color: #c32aa3;
  filter: drop-shadow(0 2px 8px #c32aa3);
}

#youtube-link {
  text-decoration: none !important;
}

#youtube-link:hover {
  color: #ff0000;
  filter: drop-shadow(0 2px 8px #ff0000);
}

.review-card.google-style {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.7rem;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #e0e7ef;
  color: #1761a0;
  font-weight: 800;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-author {
  font-weight: 700;
  color: #222;
  font-size: 1.08rem;
}
.review-stars {
  color: #ffb347;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.7em;
}
.review-date {
  color: #888;
  font-size: 0.98rem;
  font-weight: 400;
}
