@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;600;700;800&family=Zen+Maru+Gothic:wght@300;400;500;700&display=swap');

:root {
  --jtc-bg: #FFFFFF;
  --jtc-text: #111111;
  --jtc-accent: #C53D43;
  --jtc-accent-dark: #9E2F34;
  --jtc-accent-light: #E8D0D1;
  --jtc-gray-100: #F7F7F7;
  --jtc-gray-200: #EEEEEE;
  --jtc-gray-300: #DDDDDD;
  --jtc-gray-500: #888888;
  --jtc-gray-700: #555555;
  --jtc-white: #FFFFFF;
  --jtc-font-heading: 'Shippori Mincho', serif;
  --jtc-font-body: 'Zen Maru Gothic', sans-serif;
  --jtc-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --jtc-shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --jtc-shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --jtc-radius: 4px;
  --jtc-radius-lg: 8px;
  --jtc-max-width: 1200px;
  --jtc-transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--jtc-font-body);
  color: var(--jtc-text);
  background: var(--jtc-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--jtc-accent);
  text-decoration: none;
  transition: color var(--jtc-transition);
}

a:hover {
  color: var(--jtc-accent-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--jtc-font-heading);
  font-weight: 700;
  line-height: 1.4;
}

.container {
  max-width: var(--jtc-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.jtc-header {
  background: var(--jtc-white);
  border-bottom: 1px solid var(--jtc-gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.jtc-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.jtc-logo {
  font-family: var(--jtc-font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--jtc-text);
  white-space: nowrap;
}

.jtc-logo span {
  color: var(--jtc-accent);
}

.jtc-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.jtc-nav a {
  color: var(--jtc-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--jtc-radius);
  transition: background var(--jtc-transition), color var(--jtc-transition);
}

.jtc-nav a:hover {
  background: var(--jtc-gray-100);
  color: var(--jtc-accent);
}

.jtc-nav-dropdown {
  position: relative;
}

.jtc-nav-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--jtc-text);
  margin-left: 6px;
  vertical-align: middle;
  transition: transform var(--jtc-transition);
}

.jtc-nav-dropdown:hover > a::after {
  transform: rotate(180deg);
}

.jtc-nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--jtc-white);
  border: 1px solid var(--jtc-gray-200);
  border-radius: var(--jtc-radius-lg);
  box-shadow: var(--jtc-shadow-lg);
  min-width: 240px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--jtc-transition), visibility var(--jtc-transition);
  z-index: 100;
}

.jtc-nav-dropdown:hover .jtc-nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.jtc-nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 0.85rem;
  border-radius: 0;
}

.jtc-nav-dropdown-menu a:hover {
  background: var(--jtc-gray-100);
}

.jtc-cta-nav {
  background: var(--jtc-accent) !important;
  color: var(--jtc-white) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: var(--jtc-radius) !important;
  white-space: nowrap;
}

.jtc-cta-nav:hover {
  background: var(--jtc-accent-dark) !important;
  color: var(--jtc-white) !important;
}

.jtc-hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--jtc-text);
  padding: 4px;
}

.jtc-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.jtc-hero-image {
  position: relative;
  overflow: hidden;
}

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

.jtc-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 48px;
  background: var(--jtc-text);
  color: var(--jtc-white);
}

.jtc-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}

.jtc-hero-content h1 span {
  color: var(--jtc-accent);
}

.jtc-hero-content p {
  font-size: 1rem;
  line-height: 1.8;
  opacity: 0.85;
  margin-bottom: 32px;
}

.jtc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--jtc-font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--jtc-radius);
  border: none;
  cursor: pointer;
  transition: all var(--jtc-transition);
  text-align: center;
  justify-content: center;
}

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

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

.jtc-btn-outline {
  background: transparent;
  color: var(--jtc-accent);
  border: 2px solid var(--jtc-accent);
}

.jtc-btn-outline:hover {
  background: var(--jtc-accent);
  color: var(--jtc-white);
}

.jtc-btn-white {
  background: var(--jtc-white);
  color: var(--jtc-text);
}

.jtc-btn-white:hover {
  background: var(--jtc-gray-200);
  color: var(--jtc-text);
}

.jtc-section {
  padding: 80px 0;
}

.jtc-section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--jtc-accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.jtc-section-title {
  font-size: 2rem;
  margin-bottom: 48px;
}

.jtc-section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--jtc-accent);
  margin-top: 16px;
}

.jtc-about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.jtc-about-image {
  border-radius: var(--jtc-radius-lg);
  overflow: hidden;
  box-shadow: var(--jtc-shadow-lg);
}

.jtc-about-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.jtc-about-text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.jtc-about-text p {
  margin-bottom: 16px;
  color: var(--jtc-gray-700);
}

.jtc-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.jtc-step {
  counter-increment: step;
  background: var(--jtc-gray-100);
  padding: 40px 28px;
  border-radius: var(--jtc-radius-lg);
  position: relative;
  transition: transform var(--jtc-transition), box-shadow var(--jtc-transition);
}

.jtc-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--jtc-shadow-md);
}

.jtc-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--jtc-font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--jtc-accent-light);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.jtc-step h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.jtc-step p {
  font-size: 0.9rem;
  color: var(--jtc-gray-700);
}

.jtc-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.jtc-feature-card {
  text-align: center;
  padding: 36px 20px;
  border: 1px solid var(--jtc-gray-200);
  border-radius: var(--jtc-radius-lg);
  transition: all var(--jtc-transition);
}

.jtc-feature-card:hover {
  border-color: var(--jtc-accent);
  box-shadow: var(--jtc-shadow-md);
}

.jtc-feature-card i {
  font-size: 2.2rem;
  color: var(--jtc-accent);
  margin-bottom: 16px;
}

.jtc-feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.jtc-feature-card p {
  font-size: 0.85rem;
  color: var(--jtc-gray-700);
}

.jtc-topics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.jtc-topic-card {
  background: var(--jtc-gray-100);
  border-radius: var(--jtc-radius-lg);
  padding: 32px 24px;
  border-left: 4px solid var(--jtc-accent);
  transition: transform var(--jtc-transition);
}

.jtc-topic-card:hover {
  transform: translateY(-2px);
}

.jtc-topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.jtc-topic-card p {
  font-size: 0.88rem;
  color: var(--jtc-gray-700);
}

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

.jtc-faq-item {
  border-bottom: 1px solid var(--jtc-gray-200);
}

.jtc-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--jtc-font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--jtc-text);
  cursor: pointer;
  text-align: left;
}

.jtc-faq-question i {
  transition: transform var(--jtc-transition);
  font-size: 1.2rem;
  color: var(--jtc-accent);
}

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

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

.jtc-faq-item.active .jtc-faq-answer {
  max-height: 300px;
}

.jtc-faq-answer p {
  padding-bottom: 20px;
  color: var(--jtc-gray-700);
  font-size: 0.92rem;
}

.jtc-articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.jtc-article-card {
  border-radius: var(--jtc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--jtc-gray-200);
  transition: all var(--jtc-transition);
}

.jtc-article-card:hover {
  box-shadow: var(--jtc-shadow-lg);
  transform: translateY(-4px);
}

.jtc-article-card-image {
  overflow: hidden;
  height: 200px;
}

.jtc-article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--jtc-transition);
}

.jtc-article-card:hover .jtc-article-card-image img {
  transform: scale(1.05);
}

.jtc-article-card-body {
  padding: 20px;
}

.jtc-article-card-body .jtc-card-tag {
  font-size: 0.75rem;
  color: var(--jtc-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.jtc-article-card-body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  line-height: 1.5;
}

.jtc-article-card-body h3 a {
  color: var(--jtc-text);
}

.jtc-article-card-body h3 a:hover {
  color: var(--jtc-accent);
}

.jtc-article-card-body p {
  font-size: 0.85rem;
  color: var(--jtc-gray-700);
  margin-bottom: 12px;
}

.jtc-article-card-body .jtc-card-date {
  font-size: 0.78rem;
  color: var(--jtc-gray-500);
}

.jtc-cta-section {
  background: var(--jtc-text);
  color: var(--jtc-white);
  text-align: center;
  padding: 80px 24px;
}

.jtc-cta-section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.jtc-cta-section p {
  opacity: 0.8;
  margin-bottom: 32px;
}

.jtc-footer {
  background: var(--jtc-gray-100);
  border-top: 1px solid var(--jtc-gray-200);
  padding: 60px 0 0;
}

.jtc-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.jtc-footer-brand .jtc-logo {
  font-size: 1.15rem;
  margin-bottom: 12px;
  display: block;
}

.jtc-footer-brand p {
  font-size: 0.85rem;
  color: var(--jtc-gray-700);
  margin-bottom: 12px;
}

.jtc-footer h4 {
  font-family: var(--jtc-font-body);
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--jtc-text);
}

.jtc-footer ul li {
  margin-bottom: 8px;
}

.jtc-footer ul li a {
  font-size: 0.85rem;
  color: var(--jtc-gray-700);
}

.jtc-footer ul li a:hover {
  color: var(--jtc-accent);
}

.jtc-footer-contact {
  font-size: 0.82rem;
  color: var(--jtc-gray-700);
  line-height: 2;
}

.jtc-footer-contact i {
  color: var(--jtc-accent);
  margin-right: 6px;
  width: 16px;
  text-align: center;
}

.jtc-footer-bottom {
  border-top: 1px solid var(--jtc-gray-300);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: var(--jtc-gray-500);
}

.jtc-cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--jtc-text);
  color: var(--jtc-white);
  z-index: 9999;
  padding: 20px 24px;
  display: none;
  role: dialog;
}

.jtc-cookie-bar.show {
  display: block;
}

.jtc-cookie-inner {
  max-width: var(--jtc-max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.jtc-cookie-inner p {
  font-size: 0.88rem;
  opacity: 0.9;
}

.jtc-cookie-inner p a {
  color: var(--jtc-accent-light);
  text-decoration: underline;
}

.jtc-cookie-btns {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.jtc-cookie-btns .jtc-btn {
  padding: 10px 24px;
  font-size: 0.85rem;
}

.jtc-article-header {
  background: var(--jtc-text);
  color: var(--jtc-white);
  padding: 60px 0;
}

.jtc-article-header .jtc-section-label {
  color: var(--jtc-accent-light);
}

.jtc-article-header h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.jtc-article-meta {
  font-size: 0.88rem;
  opacity: 0.7;
}

.jtc-article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px;
}

.jtc-article-body h2 {
  font-size: 1.6rem;
  margin: 48px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--jtc-accent);
}

.jtc-article-body h3 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.jtc-article-body p {
  margin-bottom: 20px;
  color: var(--jtc-gray-700);
  line-height: 1.9;
}

.jtc-article-body ul, .jtc-article-body ol {
  margin-bottom: 20px;
  padding-left: 24px;
}

.jtc-article-body ul {
  list-style: disc;
}

.jtc-article-body ol {
  list-style: decimal;
}

.jtc-article-body li {
  margin-bottom: 8px;
  color: var(--jtc-gray-700);
  line-height: 1.8;
}

.jtc-article-image {
  margin: 32px 0;
  border-radius: var(--jtc-radius-lg);
  overflow: hidden;
}

.jtc-article-image img {
  width: 100%;
}

.jtc-article-nav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  border-top: 1px solid var(--jtc-gray-200);
}

.jtc-article-nav a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--jtc-text);
  max-width: 45%;
}

.jtc-article-nav a:hover {
  color: var(--jtc-accent);
}

.jtc-article-nav .jtc-nav-next {
  margin-left: auto;
  text-align: right;
}

.jtc-article-list {
  display: grid;
  gap: 24px;
}

.jtc-article-list-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--jtc-gray-200);
  border-radius: var(--jtc-radius-lg);
  overflow: hidden;
  transition: all var(--jtc-transition);
}

.jtc-article-list-item:hover {
  box-shadow: var(--jtc-shadow-md);
}

.jtc-article-list-image {
  overflow: hidden;
}

.jtc-article-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jtc-article-list-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.jtc-article-list-body .jtc-card-tag {
  font-size: 0.75rem;
  color: var(--jtc-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.jtc-article-list-body h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.jtc-article-list-body h2 a {
  color: var(--jtc-text);
}

.jtc-article-list-body h2 a:hover {
  color: var(--jtc-accent);
}

.jtc-article-list-body p {
  font-size: 0.88rem;
  color: var(--jtc-gray-700);
  margin-bottom: 8px;
}

.jtc-article-list-body .jtc-card-date {
  font-size: 0.78rem;
  color: var(--jtc-gray-500);
}

.jtc-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.jtc-contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.jtc-contact-info-item i {
  font-size: 1.4rem;
  color: var(--jtc-accent);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.jtc-contact-info-item h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.jtc-contact-info-item p {
  font-size: 0.88rem;
  color: var(--jtc-gray-700);
}

.jtc-form-group {
  margin-bottom: 20px;
}

.jtc-form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.jtc-form-group input,
.jtc-form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--jtc-gray-300);
  border-radius: var(--jtc-radius);
  font-family: var(--jtc-font-body);
  font-size: 0.92rem;
  transition: border-color var(--jtc-transition);
}

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

.jtc-form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.jtc-form-error {
  font-size: 0.8rem;
  color: var(--jtc-accent);
  margin-top: 4px;
  display: none;
}

.jtc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.jtc-modal-overlay.show {
  display: flex;
}

.jtc-modal-box {
  background: var(--jtc-white);
  border-radius: var(--jtc-radius-lg);
  padding: 40px;
  max-width: 440px;
  width: 90%;
  text-align: center;
}

.jtc-modal-box i {
  font-size: 3rem;
  color: var(--jtc-accent);
  margin-bottom: 16px;
}

.jtc-modal-box h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.jtc-modal-box p {
  font-size: 0.92rem;
  color: var(--jtc-gray-700);
  margin-bottom: 24px;
}

.jtc-map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  margin-top: 32px;
  border-radius: var(--jtc-radius-lg);
  overflow: hidden;
}

.jtc-map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.jtc-map-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.88rem;
  font-weight: 700;
}

.jtc-breadcrumb {
  font-size: 0.82rem;
  color: var(--jtc-gray-500);
  margin-bottom: 32px;
}

.jtc-breadcrumb a {
  color: var(--jtc-gray-500);
}

.jtc-breadcrumb a:hover {
  color: var(--jtc-accent);
}

.jtc-breadcrumb span {
  margin: 0 8px;
}

.jtc-page-header {
  background: var(--jtc-text);
  color: var(--jtc-white);
  padding: 48px 0;
}

.jtc-page-header h1 {
  font-size: 2rem;
}

.jtc-page-header p {
  opacity: 0.7;
  margin-top: 8px;
}

.jtc-legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 60px;
}

.jtc-legal-content h2 {
  font-size: 1.3rem;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--jtc-accent);
}

.jtc-legal-content h3 {
  font-size: 1.1rem;
  margin: 24px 0 12px;
}

.jtc-legal-content p {
  margin-bottom: 16px;
  color: var(--jtc-gray-700);
  line-height: 1.9;
}

.jtc-legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}

.jtc-legal-content li {
  margin-bottom: 8px;
  color: var(--jtc-gray-700);
}

.jtc-about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.jtc-about-hero-image {
  overflow: hidden;
}

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

.jtc-about-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  background: var(--jtc-gray-100);
}

.jtc-about-hero-content h1 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.jtc-about-hero-content p {
  color: var(--jtc-gray-700);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .jtc-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .jtc-hero-image {
    height: 300px;
  }

  .jtc-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtc-articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtc-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jtc-about-grid {
    grid-template-columns: 1fr;
  }

  .jtc-about-hero {
    grid-template-columns: 1fr;
  }

  .jtc-contact-grid {
    grid-template-columns: 1fr;
  }

  .jtc-article-list-item {
    grid-template-columns: 200px 1fr;
  }
}

@media (max-width: 768px) {
  .jtc-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--jtc-white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 0;
    overflow-y: auto;
  }

  .jtc-nav.open {
    display: flex;
  }

  .jtc-nav a {
    padding: 14px 16px;
    border-bottom: 1px solid var(--jtc-gray-200);
  }

  .jtc-nav-dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    opacity: 1;
    visibility: visible;
    display: none;
    padding-left: 16px;
  }

  .jtc-nav-dropdown.open .jtc-nav-dropdown-menu {
    display: block;
  }

  .jtc-hamburger {
    display: block;
  }

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

  .jtc-steps {
    grid-template-columns: 1fr;
  }

  .jtc-topics {
    grid-template-columns: 1fr;
  }

  .jtc-articles-grid {
    grid-template-columns: 1fr;
  }

  .jtc-features {
    grid-template-columns: 1fr;
  }

  .jtc-footer-grid {
    grid-template-columns: 1fr;
  }

  .jtc-cookie-inner {
    flex-direction: column;
    text-align: center;
  }

  .jtc-article-list-item {
    grid-template-columns: 1fr;
  }

  .jtc-article-list-image {
    height: 200px;
  }

  .jtc-article-nav {
    flex-direction: column;
  }

  .jtc-article-nav a {
    max-width: 100%;
  }

  .jtc-section {
    padding: 48px 0;
  }

  .jtc-section-title {
    font-size: 1.5rem;
  }
}
