:root {
  --wj-primary: #2d6a4f;
  --wj-secondary: #52b788;
  --wj-accent: #95d5b2;
  --wj-dark: #1b4332;
  --wj-light: #d8f3dc;
  --wj-bg: #ffffff;
  --wj-bg-light: #f8f9fa;
  --wj-text: #212529;
  --wj-text-light: #6c757d;
  --wj-shadow: rgba(0, 0, 0, 0.1);
  --wj-transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: var(--wj-text);
  background-color: var(--wj-bg);
}

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

.wj-navigation {
  background: var(--wj-bg);
  box-shadow: 0 2px 10px var(--wj-shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.wj-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wj-logo-img {
  height: 50px;
  width: auto;
}

.wj-nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.wj-nav-menu a {
  text-decoration: none;
  color: var(--wj-text);
  font-weight: 500;
  transition: var(--wj-transition);
}

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

.wj-hero-section {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wj-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
  z-index: 1;
}

.wj-hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wj-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.wj-hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.wj-hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.wj-cta-button {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--wj-primary);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--wj-transition);
  box-shadow: 0 4px 15px rgba(45, 106, 79, 0.3);
}

.wj-cta-button:hover {
  background: var(--wj-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 106, 79, 0.4);
}

.wj-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--wj-primary);
  margin-bottom: 3rem;
}

.wj-intro-section,
.wj-featured-section,
.wj-testimonials-section,
.wj-process-section,
.wj-faq-section,
.wj-cta-section {
  padding: 5rem 0;
}

.wj-intro-section {
  background: var(--wj-bg-light);
}

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

.wj-intro-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--wj-shadow);
  text-align: center;
  transition: var(--wj-transition);
}

.wj-intro-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--wj-shadow);
}

.wj-card-icon {
  color: var(--wj-primary);
  margin-bottom: 1.5rem;
}

.wj-intro-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wj-dark);
}

.wj-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.wj-featured-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--wj-shadow);
  transition: var(--wj-transition);
}

.wj-featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--wj-shadow);
}

.wj-featured-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.wj-featured-content {
  padding: 2rem;
}

.wj-featured-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wj-dark);
}

.wj-price-tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: var(--wj-light);
  color: var(--wj-primary);
  border-radius: 20px;
  font-weight: 600;
}

.wj-testimonials-section {
  background: var(--wj-bg-light);
}

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

.wj-testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px var(--wj-shadow);
}

.wj-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.wj-testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.wj-testimonial-author {
  color: var(--wj-primary);
  font-weight: 600;
}

.wj-process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.wj-process-step {
  text-align: center;
  padding: 2rem;
}

.wj-step-number {
  width: 60px;
  height: 60px;
  background: var(--wj-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.wj-process-step h3 {
  margin-bottom: 1rem;
  color: var(--wj-dark);
}

.wj-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.wj-faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--wj-shadow);
}

.wj-faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wj-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--wj-transition);
}

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

.wj-faq-question svg {
  transition: var(--wj-transition);
}

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

.wj-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.wj-faq-item.active .wj-faq-answer {
  max-height: 500px;
}

.wj-faq-answer p {
  padding: 0 1.5rem 1.5rem;
  line-height: 1.8;
}

.wj-cta-section {
  background: linear-gradient(135deg, var(--wj-primary), var(--wj-secondary));
  color: white;
  text-align: center;
}

.wj-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.wj-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.wj-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.wj-btn-primary,
.wj-btn-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--wj-transition);
  display: inline-block;
}

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

.wj-btn-primary:hover {
  background: var(--wj-light);
  transform: translateY(-2px);
}

.wj-btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.wj-btn-secondary:hover {
  background: white;
  color: var(--wj-primary);
  transform: translateY(-2px);
}

.wj-footer {
  background: var(--wj-dark);
  color: white;
  padding: 4rem 0 2rem;
}

.wj-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.wj-footer-logo {
  height: 60px;
  margin-bottom: 1rem;
}

.wj-footer-desc {
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

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

.wj-social-links a {
  color: white;
  transition: var(--wj-transition);
}

.wj-social-links a:hover {
  color: var(--wj-accent);
  transform: translateY(-3px);
}

.wj-footer-col h4 {
  margin-bottom: 1rem;
  color: var(--wj-accent);
}

.wj-footer-links {
  list-style: none;
}

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

.wj-footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.9;
  transition: var(--wj-transition);
}

.wj-footer-links a:hover {
  color: var(--wj-accent);
  padding-left: 5px;
}

.wj-footer-contact {
  list-style: none;
}

.wj-footer-contact li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

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

.wj-reg-number {
  margin-top: 1rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.wj-footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
}

.wj-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 -5px 20px var(--wj-shadow);
  padding: 2rem;
  z-index: 10000;
  display: none;
}

.wj-cookie-banner.show {
  display: block;
}

.wj-cookie-content {
  max-width: 1200px;
  margin: 0 auto;
}

.wj-cookie-content h3 {
  color: var(--wj-primary);
  margin-bottom: 1rem;
}

.wj-cookie-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.wj-cookie-btn-accept,
.wj-cookie-btn-customize,
.wj-cookie-btn-reject {
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wj-transition);
}

.wj-cookie-btn-accept {
  background: var(--wj-primary);
  color: white;
}

.wj-cookie-btn-accept:hover {
  background: var(--wj-dark);
}

.wj-cookie-btn-customize {
  background: var(--wj-secondary);
  color: white;
}

.wj-cookie-btn-customize:hover {
  background: var(--wj-primary);
}

.wj-cookie-btn-reject {
  background: var(--wj-bg-light);
  color: var(--wj-text);
}

.wj-cookie-btn-reject:hover {
  background: #dee2e6;
}

.wj-cookie-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--wj-primary);
  text-decoration: underline;
}

.wj-cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.wj-cookie-settings.show {
  display: flex;
}

.wj-cookie-settings-content {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  max-width: 600px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
}

.wj-cookie-option {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--wj-bg-light);
}

.wj-cookie-option label {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.wj-cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.wj-cookie-option p {
  margin-top: 0.5rem;
  margin-left: 2.5rem;
  color: var(--wj-text-light);
  font-size: 0.9rem;
}

.wj-blog-hero {
  background: linear-gradient(135deg, var(--wj-primary), var(--wj-secondary));
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

.wj-blog-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.wj-blog-section {
  padding: 5rem 0;
}

.wj-blog-grid {
  display: grid;
  gap: 3rem;
}

.wj-blog-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--wj-shadow);
  transition: var(--wj-transition);
}

.wj-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--wj-shadow);
}

.wj-blog-card-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.wj-blog-card-content {
  padding: 2rem;
}

.wj-blog-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  color: var(--wj-text-light);
  font-size: 0.9rem;
}

.wj-blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.wj-blog-card h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--wj-dark);
}

.wj-blog-card-excerpt {
  color: var(--wj-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.wj-read-more {
  color: var(--wj-primary);
  font-weight: 600;
  text-decoration: none;
  transition: var(--wj-transition);
}

.wj-read-more:hover {
  color: var(--wj-dark);
}

.wj-post-header {
  background: linear-gradient(135deg, var(--wj-primary), var(--wj-secondary));
  color: white;
  padding: 5rem 0 3rem;
  text-align: center;
}

.wj-post-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.wj-post-meta {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0.95;
}

.wj-post-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.wj-post-featured-img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 3rem;
}

.wj-post-content h2 {
  font-size: 2rem;
  color: var(--wj-primary);
  margin: 3rem 0 1.5rem;
}

.wj-post-content h3 {
  font-size: 1.5rem;
  color: var(--wj-dark);
  margin: 2rem 0 1rem;
}

.wj-post-content p {
  margin-bottom: 1.5rem;
  line-height: 1.9;
  font-size: 1.05rem;
}

.wj-contact-section {
  padding: 5rem 0;
}

.wj-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.wj-contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.wj-contact-icon {
  color: var(--wj-primary);
  flex-shrink: 0;
}

.wj-contact-text h3 {
  margin-bottom: 0.5rem;
  color: var(--wj-dark);
}

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

.wj-form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--wj-dark);
}

.wj-form-group input,
.wj-form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--wj-bg-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--wj-transition);
}

.wj-form-group input:focus,
.wj-form-group textarea:focus {
  outline: none;
  border-color: var(--wj-primary);
}

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

.wj-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--wj-primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wj-transition);
}

.wj-submit-btn:hover {
  background: var(--wj-dark);
  transform: translateY(-2px);
}

.wj-success-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10001;
}

.wj-success-modal.show {
  display: flex;
}

.wj-success-content {
  background: white;
  padding: 3rem;
  border-radius: 15px;
  text-align: center;
  max-width: 500px;
}

.wj-success-icon {
  width: 80px;
  height: 80px;
  background: var(--wj-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  color: white;
}

.wj-success-content h2 {
  color: var(--wj-primary);
  margin-bottom: 1rem;
}

.wj-modal-close-btn {
  margin-top: 2rem;
  padding: 0.8rem 2rem;
  background: var(--wj-primary);
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wj-transition);
}

.wj-modal-close-btn:hover {
  background: var(--wj-dark);
}

.wj-about-section {
  padding: 5rem 0;
}

.wj-about-intro {
  max-width: 900px;
  margin: 0 auto 4rem;
  text-align: center;
}

.wj-about-intro h2 {
  font-size: 2.5rem;
  color: var(--wj-primary);
  margin-bottom: 1.5rem;
}

.wj-about-intro p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--wj-text-light);
}

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

.wj-team-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--wj-shadow);
  transition: var(--wj-transition);
}

.wj-team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px var(--wj-shadow);
}

.wj-team-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.wj-team-card-content {
  padding: 2rem;
}

.wj-team-card h3 {
  font-size: 1.5rem;
  color: var(--wj-dark);
  margin-bottom: 0.5rem;
}

.wj-team-position {
  color: var(--wj-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.wj-team-bio {
  color: var(--wj-text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .wj-nav-menu {
    gap: 1rem;
    font-size: 0.9rem;
  }

  .wj-hero-title {
    font-size: 2rem;
  }

  .wj-hero-subtitle {
    font-size: 1.2rem;
  }

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

  .wj-intro-grid,
  .wj-featured-grid,
  .wj-testimonials-grid,
  .wj-process-timeline,
  .wj-team-grid {
    grid-template-columns: 1fr;
  }

  .wj-contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .wj-blog-hero h1,
  .wj-post-header h1 {
    font-size: 2rem;
  }

  .wj-cookie-settings-content {
    padding: 2rem;
  }
}