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

:root {
  --primary-color: #3B72A5;
  --primary-dark: #2d5a84;
  --primary-light: #6b9bc9;
  --text-dark: #2c3e50;
  --text-light: #6c757d;
  --white: #ffffff;
  --bg-light: #f8f9fa;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', 'Hiragino Sans', 'Yu Gothic UI', Meiryo, sans-serif;
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 70px; /* Navbar height */
}

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

/* ===== Navigation Menu ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  height: 70px;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-brand {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.nav-brand a {
  color: var(--primary-dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

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

.nav-link:hover {
  color: var(--primary-dark);
}

.nav-link-primary {
  background: var(--primary-color);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.nav-link-primary::after {
  display: none;
}

.nav-link-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-dark);
  transition: all 0.3s ease;
  border-radius: 2px;
}

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

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    gap: 20px;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    width: 100%;
    padding: 12px 0;
    font-size: 1.1rem;
  }

  .nav-link-primary {
    width: 100%;
    text-align: center;
    margin-top: 10px;
  }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
}

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

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-info h2 {
  font-size: 2rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.profile-info p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
}

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

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: var(--bg-light);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  margin-top: 20px;
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* ===== Section Styles ===== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 700;
  color: var(--text-dark);
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

.text-white {
  color: var(--white) !important;
}

.bg-light {
  background-color: var(--bg-light);
}

.bg-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

/* ===== About Section ===== */
.about-content {
  max-width: 900px;
  margin: 0 auto;
}

.lead {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-light);
  line-height: 2;
}

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

.feature-card {
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card i {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Benefits Section ===== */
.benefits-content {
  max-width: 1100px;
  margin: 0 auto;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.benefit-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-left-color: var(--primary-dark);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-color);
  transform: scale(1.1);
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--primary-dark);
}

.benefit-card:hover .benefit-icon i {
  color: var(--white);
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 700;
}

.benefit-card p {
  color: var(--text-light);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ===== Services Section ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.service-icon i {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Results Section ===== */
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.result-item {
  text-align: center;
  padding: 40px 30px;
}

.result-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.3;
}

.result-item h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.result-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* ===== Contact Section ===== */
.contact-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-text {
  font-size: 1.2rem;
  margin-bottom: 40px;
  line-height: 2;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.1rem;
  padding: 15px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 10px;
}

.contact-item i {
  font-size: 1.5rem;
}

/* ===== FAQ Section ===== */
.faq-content {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: var(--shadow-lg);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  background: var(--white);
  transition: background 0.3s ease;
  user-select: none;
}

.faq-question:hover {
  background: var(--primary-light);
}

.faq-question h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
  flex: 1;
  line-height: 1.6;
}

.faq-question i {
  font-size: 1.2rem;
  color: var(--primary-dark);
  transition: transform 0.3s ease;
  margin-left: 20px;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: var(--bg-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 25px 30px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
  font-size: 1rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  text-align: center;
  padding: 30px 0;
}

.footer p {
  opacity: 0.8;
  font-size: 0.95rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-profile {
    flex-direction: column;
    gap: 20px;
  }

  .profile-image {
    font-size: 4rem;
  }

  .profile-info h2 {
    font-size: 1.5rem;
  }

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

  .lead {
    font-size: 1rem;
  }

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

  .btn {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 0 50px;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

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

.hero-content,
.feature-card,
.service-card,
.result-item {
  animation: fadeInUp 0.8s ease-out;
}

/* ===== Benefits Page Styles ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 100px 0 60px;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.page-subtitle {
  font-size: 1.2rem;
  opacity: 0.95;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.benefits-intro {
  max-width: 1000px;
  margin: 0 auto;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 40px 0;
}

.problem-card {
  background: #fff3f3;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  border-left: 4px solid #e74c3c;
}

.problem-card i {
  font-size: 2.5rem;
  color: #e74c3c;
  margin-bottom: 15px;
}

.problem-card p {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.6;
}

.intro-text {
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 20px;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.benefit-detail {
  display: flex;
  gap: 30px;
  background: var(--white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-detail:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-detail-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-detail-icon i {
  font-size: 2.5rem;
  color: var(--primary-dark);
}

.benefit-detail-content {
  flex: 1;
}

.benefit-detail-content h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.benefit-description {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 25px;
}

.benefit-example,
.benefit-comparison,
.benefit-stats,
.benefit-tip,
.benefit-advantage,
.benefit-industries,
.benefit-longterm {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
  border-left: 4px solid var(--primary-color);
}

.benefit-example h4,
.benefit-comparison h4,
.benefit-stats h4,
.benefit-tip h4,
.benefit-advantage h4,
.benefit-industries h4,
.benefit-longterm h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.benefit-example h4 i,
.benefit-comparison h4 i,
.benefit-stats h4 i,
.benefit-tip h4 i,
.benefit-advantage h4 i,
.benefit-industries h4 i,
.benefit-longterm h4 i {
  color: var(--primary-dark);
  margin-right: 8px;
}

.benefit-example p,
.benefit-tip p,
.benefit-advantage p,
.benefit-longterm p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.benefit-comparison ul,
.benefit-stats ul,
.benefit-industries ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-comparison li,
.benefit-stats li,
.benefit-industries li {
  color: var(--text-light);
  line-height: 1.9;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.benefit-comparison li::before,
.benefit-stats li::before,
.benefit-industries li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.cta-section .section-title {
  color: var(--white);
  margin-bottom: 30px;
}

.cta-section .section-title::after {
  background: var(--white);
}

.cta-text {
  font-size: 1.2rem;
  line-height: 2;
  margin-bottom: 40px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-large {
  padding: 18px 45px;
  font-size: 1.15rem;
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Responsive for Benefits Page */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  .benefit-detail {
    flex-direction: column;
    padding: 30px 20px;
  }

  .benefit-detail-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
  }

  .benefit-detail-content h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    width: 100%;
    max-width: 300px;
  }
}

/* ===== Self MEO Page Styles ===== */
.self-meo-header {
  position: relative;
}

.header-icon {
  font-size: 4rem;
  color: var(--white);
  margin-bottom: 20px;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.welcome-message {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.welcome-title {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.6;
}

.welcome-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 25px;
}

.welcome-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.time-estimate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-light);
  padding: 15px 30px;
  border-radius: 50px;
  color: var(--primary-dark);
  font-weight: 600;
  margin-top: 20px;
}

.time-estimate i {
  font-size: 1.3rem;
}

.steps-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.step-overview-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-overview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.step-overview-card h3 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  font-weight: 700;
}

.step-overview-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

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

.step-header {
  text-align: center;
  margin-bottom: 40px;
}

.step-badge {
  background: var(--primary-color);
  color: var(--white);
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 20px;
  font-size: 1rem;
}

.step-title {
  font-size: 2rem;
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.5;
}

.step-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.step-intro {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 30px;
  text-align: center;
}

.step-intro strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.step-instructions h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 700;
}

.step-instructions h3 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.instruction-list {
  list-style: none;
  counter-reset: step-counter;
  padding: 0;
  margin: 0 0 30px 0;
}

.instruction-list li {
  counter-increment: step-counter;
  position: relative;
  padding: 20px 20px 20px 60px;
  margin-bottom: 20px;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.instruction-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 15px;
  top: 20px;
  background: var(--primary-color);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.instruction-list li strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.instruction-list li p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.example-text {
  color: var(--primary-dark) !important;
  font-style: italic;
  margin-top: 5px !important;
  padding-left: 15px;
  border-left: 3px solid var(--primary-color);
}

.info-grid,
.photo-grid,
.post-ideas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 25px 0;
}

.info-item,
.photo-item,
.post-idea {
  background: var(--bg-light);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.info-item:hover,
.photo-item:hover,
.post-idea:hover {
  transform: translateY(-5px);
}

.info-item h4,
.photo-item h4,
.post-idea h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.info-item p,
.photo-item p,
.post-idea p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.photo-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.step-tip,
.step-warning,
.step-example {
  margin-top: 30px;
  padding: 25px;
  border-radius: 12px;
}

.step-tip {
  background: #e8f5e9;
  border-left: 4px solid #4caf50;
}

.step-warning {
  background: #fff3e0;
  border-left: 4px solid #ff9800;
}

.step-example {
  background: #e3f2fd;
  border-left: 4px solid #2196f3;
}

.step-tip h4,
.step-warning h4,
.step-example h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.step-tip h4 i { color: #4caf50; margin-right: 8px; }
.step-warning h4 i { color: #ff9800; margin-right: 8px; }
.step-example h4 i { color: #2196f3; margin-right: 8px; }

.step-tip p,
.step-warning p,
.step-example p {
  color: var(--text-light);
  line-height: 1.9;
  margin: 0;
}

.step-tip ul,
.step-warning ul {
  margin: 10px 0 0 20px;
  padding: 0;
}

.step-tip li,
.step-warning li {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 8px;
}

.example-box {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  margin-top: 15px;
  border-left: 4px solid var(--primary-color);
}

.example-box p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 15px;
}

.example-box p:last-child {
  margin-bottom: 0;
}

.completion-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 100%);
  text-align: center;
  padding: 80px 0;
}

.completion-content {
  max-width: 700px;
  margin: 0 auto;
}

.completion-icon {
  font-size: 5rem;
  color: #ffd700;
  margin-bottom: 30px;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.completion-title {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.completion-text {
  font-size: 1.15rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 20px;
}

.completion-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.support-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.support-text {
  font-size: 1.1rem;
  line-height: 2;
  color: var(--text-light);
  margin-bottom: 20px;
}

.support-text strong {
  color: var(--primary-dark);
  font-weight: 700;
}

.support-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.support-feature {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.support-feature:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.support-feature i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.support-feature h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 12px;
  font-weight: 700;
}

.support-feature p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Responsive for Self MEO */
@media (max-width: 768px) {
  .welcome-message {
    padding: 35px 25px;
  }

  .welcome-title {
    font-size: 1.5rem;
  }

  .step-content {
    padding: 30px 20px;
  }

  .step-title {
    font-size: 1.5rem;
  }

  .instruction-list li {
    padding-left: 50px;
  }

  .info-grid,
  .photo-grid,
  .post-ideas {
    grid-template-columns: 1fr;
  }

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