/* Reset & Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

a {
  text-decoration: none;
  color: #0000ff;
}

a:hover {
  color: #0000ff;
}

ul {
  margin-top: 0;
  margin-bottom: 1.3em;
  padding-left: 20px;
}

li {
  margin: 13px;
}

p {
  margin-top: 0;
  margin-bottom: 1.3em;
}

h2,
h4 {
  color: #17191c;
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.3;
}

h2 {
  font-size: 1.6em;
}

h4 {
  font-size: 1.125em;
}

/* Layout */
.container {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

.section-boxed {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.section {
  padding: 30px 0;
}

.bg-black {
  background-color: #000000;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

/* Header / Advertorial */
.advertorial-bar {
  background-color: #000;
  border-bottom: 1px solid #EAEAEA;
  padding: 0;
}

.advertorial-title {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #B1B1B1;
  margin: 0;
  line-height: 1;
  padding: 4px 0;
}

/* Logo */
.logo-container {
  border-bottom: 1px solid #F1F1F1;
  padding: 10px 0;
  margin-top: -10px;
}

.logo-img {
  width: 280px;
  margin-top: 10px;
}

/* Main Content */
.main-headline {
  font-family: "Lato", sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 48px;
  color: #333;
  margin-bottom: 0.5em;
}

.video-wrapper {
  position: relative;
  aspect-ratio: 16 / 9;
  background-color: #000;
  margin-bottom: 20px;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Highlight Box */
.highlight-box {
  background-color: #FEF5C4;
  border-radius: 0;
  box-shadow: 0 0 10px 0 #FADF98;
  padding: 8px 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.highlight-box:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.highlight-box p {
  color: #333;
  font-family: "Lato", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
}

/* Testimonial Box */
.testimonial-box {
  background-color: #EDF9FF;
  border-right: 5px solid #337AB7;
  border-radius: 5px;
  padding: 8px 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.testimonial-box:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.testimonial-box p {
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
}

.stars-img {
  height: 20px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

/* Update Box */
.update-box {
  background-color: #FEF5C4;
  border: 3px dashed #FE7D7F;
  box-shadow: 0 0 10px 0 #FADF98;
  padding: 8px 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.3s;
}

.update-box:hover {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
}

.update-box p {
  color: #333;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  margin-bottom: 0;
}

/* Buttons */
.btn {
  display: block;
  width: 100%;
  background-color: #1FBA34;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  text-align: center;
  padding: 15px;
  border-radius: 7px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.35);
  transition: background-color 0.3s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background-color: #07893A;
  color: #fff;
}

.btn-container {
  margin: 0 0 40px 0;
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.share-btn {
  background-color: #3b5998;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  text-decoration: none;
  transition: filter 0.2s;
  padding: 10px 0;
  width: 100%;
}

.share-btn:hover {
  filter: saturate(1.5) brightness(1.2);
  color: #fff;
}

.share-btn.twitter {
  background-color: #000;
}

.share-btn.pinterest {
  background-color: #bd081c;
}

.share-btn svg {
  width: 1.7em;
  height: 1.7em;
  fill: #fff;
}

/* Footer */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 19px;
}

.footer-links li {
  margin: 0;
}

.footer-links a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 31px;
  color: #7B7B7B;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.footer-links a:hover {
  color: #54595F;
}

.footer-disclaimer {
  color: #7B7B7B;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  line-height: 21px;
  padding-bottom: 50px;
  text-align: center;
}

.footer-disclaimer a {
  color: #7B7B7B;
  text-decoration: underline;
}

.footer-disclaimer sup {
  font-size: 10px;
}

/* Typography */
.body-text {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #333;
}

.section-title {
  font-family: "Lato", sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 37px;
  color: #333;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 767px) {
  .main-headline {
    font-size: 32px;
    line-height: 36px;
  }

  .logo-img {
    width: 50%;
  }

  .btn {
    font-size: 23px;
    line-height: 26px;
  }

  .body-text {
    font-size: 18px;
    line-height: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .highlight-box p,
  .testimonial-box p,
  .update-box p {
    font-size: 20px;
    line-height: 26px;
  }

  .footer-links a {
    font-size: 16px;
    line-height: 26px;
  }

  .footer-disclaimer {
    font-size: 16px;
    line-height: 26px;
  }

  .share-btn {
    height: 4em;
    width: 4em;
  }
}
/* Cookie Consent Banner Styles */
.consent-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 9999;
  transform: translate(-50%, 100px) scale(0.9);
  opacity: 0;
  width: 100%;
  justify-content: center;
  align-items: center;
  max-width: 90vw;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
  pointer-events: none;
}

.consent-banner.show {
  transform: translate(-50%, 0) scale(1);
  opacity: 1;
  display: flex;
  pointer-events: auto;
}

.consent-banner-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  max-width: 1000px;
  position: relative;
  backdrop-filter: blur(10px);
}

.consent-banner-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  margin-left: 32px;
}

.consent-banner-header svg {
  width: 80px !important;
  flex-shrink: 0;
}

.consent-banner-title h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1f2937;
  line-height: 1.3;
}

.consent-banner-title p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #6b7280;
}

.consent-banner-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.consent-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.consent-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.31), transparent);
  transition: left 0.5s;
}

.consent-btn:hover::before {
  left: 100%;
}

.consent-btn-secondary {
  background: #f3f4f6;
  color: #374151;
  justify-content: center;
  border: 1px solid #e5e7eb;
  flex: 0.3;
}

.consent-btn-secondary:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.consent-btn-primary {
  background: linear-gradient(135deg, rgb(22, 198, 66) 0%, rgb(75, 162, 75) 100%);
  color: white;
  flex: 0.7;
  justify-content: center;
}

.consent-btn-primary:hover {
  background: linear-gradient(135deg, rgb(22, 198, 66) 0%, rgb(75, 162, 75) 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.consent-btn-primary svg {
  transition: transform 0.2s ease;
  width: 16px;
}

.consent-btn-primary:hover svg {
  transform: translateX(2px);
}

.consent-btn-primary span {
  max-width: fit-content;
}

.consent-banner-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: #f9fafb;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b7280;
  transition: all 0.2s ease;
}

.consent-banner-close:hover {
  background: #e5e7eb;
  color: #374151;
  transform: scale(1.1);
}

/* Customize Consent Options Styles */
.consent-customize {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.consent-customize.show {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.consent-customize-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.consent-customize-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  padding: 32px;
  max-width: 90vw;
  width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
  z-index: 1;
}

.consent-customize.show .consent-customize-card {
  transform: scale(1);
}

.consent-customize-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.consent-customize-header svg {
  width: 48px !important;
  flex-shrink: 0;
}

.consent-customize-title h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #1f2937;
  line-height: 1.3;
}

.consent-customize-title p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  color: #6b7280;
}

.consent-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.consent-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.2s ease;
}

.consent-option:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.consent-option-info {
  flex: 1;
  margin-right: 16px;
}

.consent-option-info h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px 0;
  color: #1e293b;
}

.consent-option-info p {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}

.consent-toggle {
  align-self: center;
  flex-shrink: 0;
}

.consent-toggle input[type="checkbox"] {
  display: none;
}

.toggle-label {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 28px;
  background: #cbd5e1;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.consent-toggle input[type="checkbox"]:checked+.toggle-label {
  background: #3b82f6;
}

.consent-toggle input[type="checkbox"]:checked+.toggle-label .toggle-slider {
  transform: translateX(20px);
}

.consent-customize-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.consent-customize-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f1f5f9;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: all 0.2s ease;
}

.consent-customize-close:hover {
  background: #e2e8f0;
  color: #475569;
  transform: scale(1.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .consent-banner {
    max-width: 95vw;
    bottom: 16px;
  }

  .consent-banner-card {
    max-width: none;
    padding: 20px;
  }

  .consent-banner-header {
    gap: 12px;
    margin-bottom: 16px;
    margin-left: 0;
  }

  .consent-banner-title h3 {
    font-size: 16px;
  }

  .consent-banner-title p {
    font-size: 13px;
  }

  .consent-banner-actions {
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
  }

  .consent-btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
  }

  .consent-option {
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }

  .consent-option-info {
    margin-right: 0;
  }

  .consent-customize-actions {
    flex-direction: column;
    gap: 8px;
  }

  .consent-customize-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  .consent-banner {
    bottom: 12px;
  }

  .consent-banner-card {
    padding: 16px;
  }

  .consent-banner-header {
    gap: 10px;
    margin-bottom: 12px;
  }

  .consent-banner-header svg {
    width: 48px !important;
  }

  .consent-banner-title h3 {
    font-size: 15px;
  }

  .consent-banner-title p {
    font-size: 12px;
  }

  .consent-btn {
    padding: 12px 16px;
    font-size: 13px;
  }

  .consent-option {
    padding: 12px;
  }

  .consent-option-info h4 {
    font-size: 14px;
  }

  .consent-option-info p {
    font-size: 12px;
  }
}