:root {
  --primary-color: #8b1538;
  --primary-dark: #6b0f2a;
  --primary-light: #a61d47;
  --secondary-color: #2c3e50;
  --text-dark: #2c3e50;
  --text-muted: #6c757d;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-outline-primary {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.navbar-brand {
  color: var(--primary-color);
  font-size: 1.5rem;
  letter-spacing: 1px;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.hero-section {
  position: relative;
  height: 600px;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(139, 21, 56, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

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

.icon-text {
  font-size: 2rem;
  font-weight: bold;
}

.topic-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.topic-card:hover {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.feature-item {
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

.category-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.category-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.process-step {
  padding: 30px;
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  position: relative;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background-color: var(--primary-color);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
}

.suitable-item {
  padding: 15px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.custom-list {
  list-style: none;
  padding-left: 0;
}

.custom-list li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
}

.custom-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.info-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.format-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.format-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.format-icon {
  font-size: 3rem;
}

.disclaimer-box {
  background-color: #fff3cd;
  border: 2px solid #ffc107;
  border-radius: 10px;
}

.testimonial-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.faq-item {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

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

.faq-answer {
  background-color: var(--light-bg);
  color: var(--text-muted);
}

.toggle-icon {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

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

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

.approach-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.role-detail {
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
  margin-bottom: 20px;
}

.value-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.value-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
  font-size: 3rem;
}

.boundary-box {
  background-color: var(--light-bg);
  border-radius: 10px;
}

.boundary-list {
  list-style: none;
  padding-left: 0;
}

.boundary-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
}

.boundary-list li:before {
  content: "•";
  position: absolute;
  left: 5px;
  font-weight: bold;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.contact-form-box {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(139, 21, 56, 0.25);
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto;
  font-weight: bold;
}

.expectation-card {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  height: 100%;
}

.policy-content h3 {
  color: var(--primary-color);
  margin-top: 30px;
}

.policy-content h5 {
  color: var(--secondary-color);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 20px 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
}

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

.cookie-banner p {
  margin-bottom: 10px;
}

.cookie-banner a {
  color: var(--white);
  text-decoration: underline;
}

.cookie-banner .btn-light {
  background-color: var(--white);
  color: var(--primary-color);
  border: none;
}

.cookie-banner .btn-outline-light {
  border-color: var(--white);
  color: var(--white);
}

.cookie-banner .btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-color);
}

footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}

footer a:hover {
  color: var(--primary-light);
}

@media (max-width: 768px) {
  .hero-section {
    height: 400px;
  }

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .display-4 {
    font-size: 2rem;
  }

  .cookie-banner .btn {
    margin-top: 10px;
    width: 100%;
  }
}
