/* 
  TU＊KU＊RU - Official Style Sheet
  Theme: Creative Factory for Premium Products
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;500;700&family=Montserrat:wght@400;700&display=swap');

:root {
  --primary-color: #1A1A1A;
  --secondary-color: #F5F5F7;
  --accent-pink: #E91E63;
  --accent-gradient: linear-gradient(135deg, #FF4081 0%, #E91E63 100%);
  --text-main: #1A1A1A;
  --text-sub: #6E6E73;
  --bg-white: #FFFFFF;
  --glass-bg: rgba(255, 255, 255, 0.85);
  --section-spacing: 120px;
  --section-spacing-sp: 60px;
  --container-width: 1100px;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: var(--bg-white);
  color: var(--text-main);
  line-height: 2.0;
  word-wrap: break-word;
}

/* PC / SP テキスト出し分け */
.sp-only { display: none; }

@media (max-width: 768px) {
  .sp-only { display: inline; }
  .pc-only { display: none; }
}

/* Typography */
h1 {
  font-family: 'Noto Serif JP', serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
h2 {
  font-family: 'Noto Serif JP', serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  h1 { font-size: 28px; letter-spacing: 0.06em; }
  h2 { font-size: 24px; letter-spacing: 0.06em; }
  h3 { font-size: 15px; }
}

/* 詳細ページのヒーローセクション見出し改行防止 */
.detail-hero-content h1 {
  white-space: nowrap;
  font-size: clamp(20px, 8vw, 48px) !important;
}

.large-text {
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .large-text {
    font-size: 14px;
  }
}

/* Layout */
.container {
  max-width: 1600px; /* 画面幅を広く活用 */
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
}

section {
  padding: var(--section-spacing) 0;
}

/* Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-size: 15px;
  text-align: center;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.btn-lg {
  padding: 16px 48px;
  font-size: 18px;
}

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

.btn-outline {
  border-color: #E5E5E7;
  color: var(--text-main);
  background: white;
}

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

/* Glassmorphism Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 15px 0;
}

header.scrolled {
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 900;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 700;
  font-size: 16px;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 0.6;
}

@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
}

/* Hero Main Image (Above Slideshow) */
.hero-main-image {
    padding: 100px 0 0;
    line-height: 0;
    font-size: 0;
}

@media (max-width: 768px) {
    .hero-main-image {
        padding-top: 80px;
    }
}

.hero-main-image img {
    width: 100%;
    display: block;
    height: auto;
    object-fit: contain;
}

/* Main Visual (Slider Placeholder) */
.hero {
  height: 85vh;
  position: relative;
  overflow: hidden;
  background-color: #EEE;
}

.slideshow-container {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 1000%; /* 10 slides */
}

.slide {
  flex: 0 0 10%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3); /* 画像を暗くして文字を見やすく */
  z-index: 1;
}

/* Nav Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
}

.nav-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: var(--transition);
  font-size: 20px;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  background: none; /* 背景ボックスを削除 */
  padding: 0;
  border-radius: 0;
  text-align: center;
  backdrop-filter: none;
  box-shadow: none;
}

@media (max-width: 768px) {
  .hero { 
    height: auto; 
    min-height: 80vh; 
    padding-top: 60px; /* Header height offset */
    /* display: flex を削除（スライドショーの構造を維持するため） */
  }
  .slideshow-container {
    height: 100%; /* 高さを維持 */
  }
  .slide {
    height: 80vh; /* スマホでのスライド単体の高さを確保 */
  }
  .hero-content { 
    padding: 25px; 
    margin: 40px 15px; 
    width: auto;
  }
}

.hero h1 {
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #FFF; /* 文字は白 */
  /* 袋文字（縁取り）の実装 */
  text-shadow: 
    2px 2px 0 #000,
    -2px 2px 0 #000,
    2px -2px 0 #000,
    -2px -2px 0 #000,
    0px 2px 0 #000,
    0px -2px 0 #000,
    2px 0px 0 #000,
    -2px 0px 0 #000;
}

.hero p {
  color: #FFF;
  text-shadow: 1px 1px 2px #000;
}

.hero .large-text {
  font-weight: 700;
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
}

/* Stats Section in Hero */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: #FFF; /* 全て白文字に統一 */
  text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.stat-label {
  display: block;
  font-size: 13px;
  color: #FFF; /* 全て白文字に統一 */
  margin-top: 4px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

@media (max-width: 768px) {
  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }
  .stat-value { font-size: 20px; }
}

/* Service Grid (Reference Style) */
.service-section-title {
  text-align: center;
  margin-bottom: 60px;
}

.service-section-title h2 {
  font-size: 42px;
  margin-bottom: 16px;
}

.services-flex-container {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .services-flex-container {
    flex-direction: column;
  }
}

.service-sub-section {
  display: flex;
  flex-direction: column;
}

.service-sub-section.printing {
  flex: 3;
}

.service-sub-section.processing {
  flex: 5;
}

/* 強制的な高さ合わせを解除し、自然な高さを優先 */
.service-sub-section.printing .grid-container {
  display: grid;
}

.service-sub-section.printing .service-card {
  height: auto;
}

@media (max-width: 1024px) {
  .service-sub-section.printing {
    flex: 1;
  }
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px; /* product-gridと同じgapに調整 */
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E5E7;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block; /* 縦並びのflexではなくブロックへ */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.service-card .product-image {
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-size: cover;
  background-position: center;
}

.service-info {
  padding: 12px;
  text-align: center;
  background: #FFF;
}

.service-info h3 {
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

/* Product Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: #FFF;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #E5E5E7;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* 正方形に統一 */
  background-color: #EEE;
  background-size: cover;
  background-position: center;
}

.product-info {
  padding: 12px;
  text-align: center;
}

.product-info h3 {
  font-size: 13px;
  margin-bottom: 0;
}

/* Modal for descriptions */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  transition: var(--transition);
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal-content {
  background: #FFF;
  padding: 60px;
  border-radius: 32px;
  max-width: 700px;
  width: 90%;
  position: relative;
  transform: translateY(40px);
  transition: var(--transition);
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 24px;
  cursor: pointer;
  background: var(--secondary-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Flow Steps */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 1024px) {
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .flow-steps {
        grid-template-columns: 1fr;
    }
}

.flow-step {
    background: white;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #E5E5E7;
    position: relative;
    transition: var(--transition);
}

.flow-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.flow-num {
    font-size: 80px;
    font-weight: 900;
    color: var(--accent-pink);
    line-height: 0.8;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    left: 20px;
    top: 15px;
    opacity: 0.25;
    z-index: 0;
}

.flow-info {
    position: relative;
    z-index: 1;
}

.flow-info h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 0;
}

.flow-info p {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #E5E5E7;
  padding: 20px 0;
}

.faq-question {
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding-right: 30px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

/* Example Sections & Items (Usage Scenes) */
.example-section {
    background: #F5F5F7;
    padding: 100px 0;
}

.example-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .example-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .example-grid {
        grid-template-columns: 1fr;
    }
}

.example-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.example-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.example-item img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    display: block;
    background: #eee;
}

.example-item h4 {
    margin: 0;
    padding: 14px 16px;
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.5;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  color: var(--text-sub);
  font-size: 14px;
  margin-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  margin-top: 15px;
}

/* Company Section Layout */
.company-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

@media (max-width: 1024px) {
    .company-content {
        flex-direction: column;
    }
}

.company-info-text {
    flex: 1;
    width: 100%;
}

.company-map {
    flex: 1;
    width: 100%;
    height: 400px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #E5E5E7;
}

.company-table {
    width: 100%;
    border-collapse: collapse;
}

.company-table th, .company-table td {
  padding: 20px;
  border-bottom: 1px solid #E5E5E7;
  text-align: left;
}

.company-table th {
  width: 30%;
  color: var(--text-sub);
  font-size: 14px;
  font-weight: 500;
}

.company-table td {
  font-weight: 700;
  font-size: 15px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 14px;
}

.form-group label span {
  background: #FF3B30;
  color: white;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 2px;
  margin-left: 8px;
  vertical-align: middle;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #E5E5E7;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.3s;
}

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

.checkbox-group {
    margin-top: -10px;
    margin-bottom: 30px;
}

.checkbox-group label span {
    background: none !important;
    color: var(--text-sub) !important;
    font-size: 14px !important;
    padding: 0 !important;
    margin-left: 0 !important;
}

/* Chatbot UI */
.chatbot-trigger {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 70px;
  height: 70px;
  background: var(--accent-gradient);
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1500;
  transition: var(--transition);
}

.chatbot-trigger:hover {
  transform: scale(1.1) rotate(5deg);
}

.chatbot-window {
  position: fixed;
  bottom: 120px;
  right: 40px;
  width: 380px;
  height: 500px;
  background: #FFF;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  z-index: 1500;
  overflow: hidden;
  transform-origin: bottom right;
  transition: var(--transition);
}

.chatbot-window.active {
  display: flex;
  animation: popIn 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes popIn {
  from { opacity: 0; transform: scale(0.8) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.chat-header {
  background: var(--primary-color);
  color: white;
  padding: 16px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.chat-to-form-btn {
  background: var(--accent-pink);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.chat-to-form-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.chat-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-bubble {
  padding: 12px 18px;
  border-radius: 18px;
  max-width: 80%;
  font-size: 15px;
  line-height: 1.6;
  white-space: pre-wrap;
  word-break: break-word;
}

.chat-bubble.bot {
  background: var(--secondary-color);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chat-bubble.user {
  background: var(--accent-gradient);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* タイピングインジケーター */
.chat-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
}

.chat-typing span {
  width: 8px;
  height: 8px;
  background: #AAAAAA;
  border-radius: 50%;
  animation: typing-bounce 1.2s infinite ease-in-out;
}

.chat-typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-6px); }
}

/* 入力エリア */
.chat-input-area {
  padding: 12px 16px;
  border-top: 1px solid #E5E5E7;
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.chat-textarea {
  flex: 1;
  border: 1px solid #E5E5E7;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: inherit;
  resize: none;
  outline: none;
  transition: border-color 0.2s;
  line-height: 1.5;
  max-height: 100px;
  overflow-y: auto;
}

.chat-textarea:focus {
  border-color: var(--accent-pink);
}

.chat-send-btn {
  background: var(--accent-gradient);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.chat-send-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Footer Detailed */
footer {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

.footer-brand {
    flex: 2;
}

.footer-nav {
    flex: 3;
    display: flex;
    gap: 40px;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-nav-col h4 {
    font-size: 14px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
}

.footer-nav-col a {
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-nav-col a:hover {
    opacity: 1;
    padding-left: 5px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 12px;
    opacity: 0.5;
}

@media (max-width: 768px) {
  .final-cta h2 { font-size: 24px; }
  .final-cta-btns { flex-direction: column; padding: 0 40px; }
}
footer {
  background: #000;
  color: #FFF;
  padding: 80px 0;
  text-align: center;
}

footer a {
  color: #FFF;
  text-decoration: none;
  opacity: 0.6;
}

footer p {
  opacity: 0.4;
  margin-top: 40px;
}

/* サービス詳細ページ用オプションリスト */
.option-section {
    margin-top: 80px;
    padding: 60px 0;
    width: 100%;
    border-top: 1px solid #E5E5E7; /* 枠ではなく上下の区切り線で広がりを出す */
    border-bottom: 1px solid #E5E5E7;
}

.option-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px 80px; /* 縦横にしっかり余白を取る */
    margin-top: 40px;
    width: 100%;
}

/* PCサイズで2列にすることで、1項目あたりの幅を広く取り、窮屈さを解消 */
@media (min-width: 992px) {
    .option-list {
        grid-template-columns: 1fr 1fr;
    }
}

.option-item {
    border-left: 2px solid var(--primary-color);
    padding: 10px 0 10px 30px;
    text-align: left;
}

.option-item h4 {
    font-size: 20px; /* 少し大きくして視認性をアップ */
    margin-bottom: 15px;
    color: var(--primary-color);
    letter-spacing: 0.05em;
}

.option-item p {
    font-size: 15px;
    color: var(--text-sub);
    line-height: 1.8; /* 行間を広げて読みやすく */
    margin: 0;
}

/* サービス詳細ページ用 CTAボックス（お問い合わせ誘導） */
.cta-box {
    text-align: center;
    padding: 100px 20px;
    background: white;
}
