/* ========== 1. Basic Settings ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* 顏色變數 */
  --primary-color: #1e3c72;
  --secondary-color: #2a5298;
  --accent-color: #ffd700;
  --text-dark: #333;
  --text-light: #666;
  --bg-light: #f5f5f5;
  --bg-white: #ffffff;
  
  /* 陰影變數 */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.15);
  
  /* 動畫變數 */
  --transition: all 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Microsoft JhengHei', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-white);
}

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


/* ========== 2. Header and Navigation Bar ========== */
header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.navbar {
  padding: 1rem 0;
}

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo img {
  height: 60px;
  width: auto;
  border-radius: 5px;
}

.company-name {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.company-name-en {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-color);
}

/* Mobile Menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: var(--transition);
}

/* Reponsive Design */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-color);
    flex-direction: column;
    gap: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 400px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link {
    display: block;
    padding: 15px 20px;
  }

  .nav-link::after {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
}

@media (max-width: 480px) {
  .logo img {
    height: 45px;
  }
}

/* ========== 3. Hero Area ========== */
.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 2rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* Hero Anime Affect */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reponsive Design */
@media (max-width: 768px) {
  /* Hero */
  .hero {
    min-height: 200px;
  }

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

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }
}
/* ========== 4. Notice Bar ========== */
.price-notice-bar {
  background: #016394;
  padding: 0.75rem 0;
  text-align: center;
  position: relative;
  z-index: 100;
}

.price-notice-text {
  color: white;
  font-weight: bolder;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}

.price-notice-text a {
  color: #FFD700;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #FFD700;
  transition: all 0.3s ease; 
}

.price-notice-text a:hover {
  color: #FFF;
  border-bottom-color: #FFF;
}

/* Mobile Version */
@media (max-width: 768px) {
  .price-notice-bar {
    padding: 0.6rem 0;
  }
  
  .price-notice-text {
    font-size: 0.85rem;
  }
}

/* ========== 5. Button Style ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0.75rem 1.5rem;  /* 統一 padding */
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

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

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

.btn-line {
  background: #06C755;
  color: white;
  border: 2px solid #06C755;
  text-align: center;
}

.btn-line:hover {
  background: #05B04B;
  border-color: #05B04B;
  transform: translateY(-2px);
}

.btn-line i {
  font-size: 1.2em;
}

/* ========== 6. Section Style ========== */
.section {
  padding: 50px 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.title-underline {
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  margin: 0 auto 20px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.section-link {
  text-align: center;
  margin: 50px auto 0;
  max-width: 800px;
}

/* Reponsive Design */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-description {
    font-size: 1rem;
  }  
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }
}
/* ========== 7. Index Page Style ========== */
/* About 義崇 Section */
.home-about {
  display: block;
}

.home-about-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
  max-width: 800px;
  margin: 0 auto 30px;
}

.home-about-content  {
  font-size: 1.1rem;
}

.home-about-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 20px;
  margin-bottom: 10px;
}

.home-about-content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.home-about-content ul li {
  font-size: 1.1rem;
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-light);
  line-height: 1.8;
}

.home-about-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.link-button {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.link-button:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}

/* Features Card Grid */
.home-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.feature-card {
  background: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.feature-card h4 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Products Grid Style */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.product-card {
  background: white;
  padding: 35px 25px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.product-icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.product-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.product-card p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Quality Gird Style */
.quality-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.quality-card {
  background: white;
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.quality-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quality-icon {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.quality-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.quality-card p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Reponsive Design */
@media (max-width: 768px) {
  .home-about {
    display: block;
  }

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

  .products-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-features {
    grid-template-columns: 1fr;
  }

  .product-icon,
  .quality-icon {
    font-size: 2.5rem;
  }
}

/* ========== 8. About Page Style ========== */
/* Company Introduction and Timeline Dot */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-content h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--primary-color);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 5px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 3px solid var(--primary-color);
  z-index: 1;
}

.timeline-content h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.timeline-content p {
  font-size: 1rem;
  color: var(--text-light);
}

/* Philosophy Card Grid */
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 100%;
  margin: 0 auto;
}

.philosophy-card {
  background: white;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.philosophy-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.philosophy-card h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.philosophy-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Service List */
.service-list {
  max-width: 750px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-items: center;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  min-height: 100px;
  max-width: 350px;
}

.service-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
}

.service-icon {
  font-size: 1.3rem;
  color: var(--primary-color);
  font-weight: bold;
  min-width: 30px;
}

.service-item p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.6;
}

/* Successful Case */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.case-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}

.case-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.case-list {
  list-style: none;
  padding: 0;
}

.case-list li {
  font-size:1.1rem;
  padding: 8px 0;
  padding-left: 20px;
  position: relative;
  color: var(--text-light);
  line-height: 1.6;
}

.case-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Reponsive Design */
@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .service-item {
    width: 100%;  /* 手機版填滿 */
  }

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

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

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

  .cases-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== 9. Footer Style ========== */
.footer {
  background: var(--primary-color);
  color: white;
  padding: 50px 0 20px;
}

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

.footer-section h3 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-tagline {
  margin-top: 15px;
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

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

.footer-maps-section {
  display: flex;
  flex-direction: column;
}

/* Google Map Grid */
.footer-maps-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

/* Single Map Item */
.footer-map-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* Map Label */
.map-label {
  color: var(--accent-color);
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.map-label i {
  color: #e74c3c;
  font-size: 0.9rem;
}

/* Map Wrapper */
.footer-map-wrapper {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.footer-map-wrapper:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.footer-map-wrapper a {
  display: block;
  position: relative;
}

/* 地圖覆蓋層（提示點擊） */
.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(36, 123, 160, 0.95), transparent);
  padding: 6px;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
}

.footer-map-wrapper:hover .map-overlay {
  opacity: 1;
}

.map-overlay span {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Address word style */
.map-address {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.4;
}

/* Operation hours */
.footer-hours {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 10px 0 0 0;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-hours i {
  color: var(--accent-color);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-map-wrapper iframe {
  pointer-events: none;
}

.footer-map-wrapper:hover iframe {
  pointer-events: auto;
}

/* Reponsive Design */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ========== 10. Back to top Button ========== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 999;
}

.back-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
}

.back-to-top.show {
  display: flex;
}

/* Responsive Design */
@media (max-width: 768px) {
  .back-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

/* ========== 11. 無障礙設計 ========== */
*:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* ========== 12. Products Page Style ========== */
/* Product Category wrapper */
.prod-category-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.prod-category-header {
  text-align: center;
  margin-bottom: 50px;
}

.prod-category-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.prod-category-title {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.prod-category-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Product Items Grid */
.prod-items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

/* Product Items Card */
.prod-item-card {
  background: white;
  padding: 35px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.prod-item-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent-color);
}

.prod-item-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  text-align: center;
}

.prod-item-name {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
  font-weight: 700;
}

.prod-item-divider {
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  margin: 0 auto 20px;
}

/* Product Items Features List */
.prod-item-features {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.prod-item-features li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.1rem;
}

.prod-item-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Product Items Application Range */
.prod-item-applications {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.prod-item-applications strong {
  color: var(--primary-color);
  font-size: 1.2rem;
  display: block;
  margin-bottom: 10px;
}

.prod-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.95rem;
  margin: 3px;
  transition: var(--transition);
}

.prod-tag:hover {
  background: var(--primary-color);
  color: white;
}

/* CIP Benifits Box */
.prod-benefits-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 40px;
  border-radius: 12px;
  margin-top: 30px;
}

.prod-benefits-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--accent-color);
}

.prod-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.prod-benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: var(--transition);
}

.prod-benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(5px);
}

.prod-benefit-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  min-width: 30px;
}

.prod-benefit-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Hygiene Tips */
.prod-hygiene-tips {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}

.prod-hygiene-title {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 30px;
}

.prod-hygiene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.prod-hygiene-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-light);
  border-radius: 8px;
  transition: var(--transition);
}

.prod-hygiene-item:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.prod-hygiene-number {
  min-width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  transition: var(--transition);
}

.prod-hygiene-item:hover .prod-hygiene-number {
  background: var(--accent-color);
  color: var(--primary-color);
}

.prod-hygiene-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Product Consultant CTA Section */
.prod-cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 60px 40px;
  border-radius: 15px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.prod-cta-box h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: white;
}

.prod-cta-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.95;
  line-height: 1.6;
}

.prod-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* 手風琴（Accordion）樣式 */
.prod-accordion-item {
  background: white;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.prod-accordion-item:hover {
  box-shadow: var(--shadow-md);
}

.prod-accordion-item.active {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Accordion Header */
.prod-accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 35px;
  background: white;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-left: 5px solid var(--primary-color);
}

.prod-accordion-header:hover {
  background: var(--bg-light);
  border-left-color: var(--accent-color);
}

.prod-accordion-item.active .prod-accordion-header {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-left-color: var(--accent-color);
}

.prod-accordion-item.active .prod-accordion-header * {
  color: white !important;
}

.prod-accordion-title-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
}

.prod-accordion-icon {
  font-size: 3rem;
  flex-shrink: 0;
}

.prod-accordion-title-text h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.prod-accordion-title-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin: 0;
}

.prod-accordion-arrow {
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

/* Accordion Content */
.prod-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 35px;
}

.prod-accordion-item.active .prod-accordion-content {
  padding: 0 35px 35px 35px;
}

.prod-accordion-intro {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--bg-light);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}

.prod-accordion-content .prod-items-grid {
  margin-bottom: 30px;
  grid-template-columns: repeat(2, 1fr);
}
/* Responsive Design */
@media (max-width: 1024px) {
  .prod-accordion-header {
    padding: 25px 30px;
  }

  .prod-accordion-content {
    padding: 0 30px;
  }

  .prod-accordion-item.active .prod-accordion-content {
    padding: 0 30px 30px 30px;
  }
}

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

  .prod-benefits-grid {
    grid-template-columns: 1fr;
  }

  .prod-hygiene-grid {
    grid-template-columns: 1fr;
  }

  .prod-cta-box {
    padding: 40px 25px;
  }

  .prod-cta-box h3 {
    font-size: 1.5rem;
  }

  .prod-cta-buttons {
    flex-direction: column;
  }

  .prod-cta-buttons .btn {
    width: 100%;
  }

  .prod-accordion-header {
    padding: 20px;
    flex-direction: column;
    gap: 15px;
  }

  .prod-accordion-title-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .prod-accordion-icon {
    font-size: 2.5rem;
  }

  .prod-accordion-title-text h3 {
    font-size: 1.3rem;
  }

  .prod-accordion-title-text p {
    font-size: 0.9rem;
  }

  .prod-accordion-arrow {
    font-size: 1.2rem;
  }

  .prod-accordion-content {
    padding: 0 20px;
  }

  .prod-accordion-item.active .prod-accordion-content {
    padding: 0 20px 25px 20px;
  }

  .prod-accordion-intro {
    padding: 20px;
    font-size: 1rem;
  }

  .prod-accordion-content .prod-items-grid {
    grid-template-columns: 1fr;
  }  
}

@media (max-width: 480px) {
  .prod-accordion-header {
    padding: 15px;
  }

  .prod-accordion-icon {
    font-size: 2rem;
  }

  .prod-accordion-title-text h3 {
    font-size: 1.1rem;
  }
}

/* ========== 13. Quality Page Style ========== */
/* Certification Highlight Grid */
.cert-highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.cert-highlight-card {
  background: white;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: var(--transition);
  border-top: 5px solid var(--primary-color);
}

.cert-highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-top-color: var(--accent-color);
}

.cert-highlight-card .cert-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.cert-highlight-card h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.cert-value {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.cert-number {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  background: var(--bg-light);
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-family: 'Courier New', monospace;
}

.cert-highlight-card p {
  color: var(--text-light);
  font-size: 1rem;
}

/* Compliance Notice */
.compliance-notice {
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f2 100%);
  padding: 30px 40px;
  border-radius: 12px;
  margin-bottom: 40px;
  border-left: 5px solid var(--primary-color);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 4px 15px rgba(30, 60, 114, 0.1);
}

.compliance-notice i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-top: 5px;
  flex-shrink: 0;
}

.compliance-notice p {
  color: var(--text-dark);
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

/* Food Safety Standard Content */
.standards-content {
  max-width: 1000px;
  margin: 0 auto;
}

.standard-section {
  background: white;
  padding: 35px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.standard-section h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.standard-section h3 i {
  color: var(--accent-color);
}

.standard-section p {
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.standard-section p strong {
  color: var(--primary-color);
}

.note {
  color: var(--text-light);
  font-style: italic;
  font-size: 0.95rem;
  padding: 15px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent-color);
  border-radius: 5px;
  margin-top: 15px;
}

/* Standards Table */
.standards-table {
  margin: 25px 0;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.standard-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-bottom: 1px solid #e0e0e0;
  transition: var(--transition);
}

.standard-row:last-child {
  border-bottom: none;
}

.standard-row:hover {
  background: var(--bg-light);
}

.standard-item,
.standard-value {
  padding: 20px 25px;
  font-size: 1rem;
}

.standard-item {
  color: var(--text-dark);
  font-weight: 500;
  border-right: 1px solid #e0e0e0;
}

.standard-value {
  color: var(--primary-color);
  font-weight: 600;
  text-align: center;
}

/* Requirement List */
.requirement-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.requirement-list li {
  padding: 12px 20px;
  padding-left: 50px;
  position: relative;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 1.05rem;
  background: var(--bg-light);
  margin-bottom: 10px;
  border-radius: 5px;
  transition: var(--transition);
}

.requirement-list li:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(5px);
}

.requirement-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.3rem;
}

.requirement-list li:hover::before {
  color: var(--accent-color);
}

/* Quality Assurance Gird */
.quality-assurance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.qa-card {
  background: white;
  padding: 35px 30px;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  border-top: 4px solid var(--primary-color);
}

.qa-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--accent-color);
}

.qa-icon {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
  font-weight: bold;
}

.qa-card h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.qa-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Commitment Box */
.commitment-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  padding: 60px 50px;
  border-radius: 15px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.commitment-box h2 {
  font-size: 2.2rem;
  margin-bottom: 25px;
  color: white;
}

.commitment-box p {
  font-size: 1.15rem;
  line-height: 1.9;
  margin-bottom: 20px;
  opacity: 0.95;
}

.commitment-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 35px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .cert-highlight-grid {
    gap: 25px;
  }

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

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

  .cert-value {
    font-size: 2rem;
  }

  .cert-number {
    font-size: 1.1rem;
    padding: 12px 15px;
  }

  .standard-section {
    padding: 25px 20px;
  }

  .standard-row {
    grid-template-columns: 1fr;
  }

  .standard-item {
    border-right: none;
    border-bottom: 1px solid #e0e0e0;
  }

  .standard-value {
    text-align: left;
  }

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

  .commitment-box {
    padding: 40px 30px;
  }

  .commitment-box h2 {
    font-size: 1.8rem;
  }

  .commitment-box p {
    font-size: 1.05rem;
  }

  .commitment-buttons {
    flex-direction: column;
  }

  .commitment-buttons .btn {
    width: 100%;
  }

  .compliance-notice {
    flex-direction: column;
    padding: 25px 20px;
    gap: 15px;
  }
  
  .compliance-notice i {
    font-size: 2rem;
  }
  
  .compliance-notice p {
    font-size: 1rem;
  }  
}

@media (max-width: 480px) {
  .cert-highlight-card {
    padding: 30px 20px;
  }

  .cert-value {
    font-size: 1.8rem;
  }

  .scope-card {
    padding: 25px 20px;
  }

  .standard-section {
    padding: 20px 15px;
  }

  .standard-section h3 {
    font-size: 1.3rem;
    flex-direction: column;
    text-align: center;
  }

  .commitment-box {
    padding: 30px 20px;
  }

  .commitment-box h2 {
    font-size: 1.5rem;
  }

  .compliance-notice {
    padding: 20px 15px;
  }
  
  .compliance-notice p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

}

/* ========== 14. Contact Page Style ========== */
/* Contact Wrapper */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
}

/* Contact Info Box */
.contact-info-box {
  background: #f8f9fa;
  padding: 2.5rem;
  border-radius: 12px;
  height: fit-content;
}

.contact-info-box h2 {
  color: #1a365d;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-item > i {
  color: #2563eb;
  font-size: 1.5rem;
  margin-top: 0.25rem;
  min-width: 24px;
}

.contact-item h3 {
  color: #1a365d;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #4a5568;
  line-height: 1.6;
  margin: 0.25rem 0;
}

.contact-item a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: #1e40af;
  text-decoration: underline;
}

.contact-item .note {
  font-size: 0.9rem;
  color: #718096;
  font-style: italic;
}

.contact-item .btn-line {
  color: white;
}

/* Contact Form Box */
.contact-form-box {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-form-box h2 {
  color: #1a365d;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-description {
  color: #718096;
  margin-bottom: 2rem;
}

/* Form Messages */
.form-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.form-message i {
  font-size: 1.5rem;
}

.form-message p {
  margin: 0;
  font-weight: 500;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #1a365d;
  font-weight: 500;
  font-size: 0.95rem;
}

.required {
  color: #dc2626;
}

.form-input {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  background: white;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-input::placeholder {
  color: #a0aec0;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.btn-submit {
  margin-top: 0.5rem;
  padding: 1rem 2rem;
  font-size: 1.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-info-box,
  .contact-form-box {
    padding: 1.5rem;
  }

  .contact-info-box h2,
  .contact-form-box h2 {
    font-size: 1.5rem;
  }

  .contact-item {
    flex-direction: column;
    gap: 0.75rem;
  }

  .form-input {
    padding: 0.75rem;
  }
}

/* ========== 15. Privacy Page Style ========== */
.privacy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  line-height: 1.8;
}

.privacy-content h1 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
}

.privacy-content h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-color);
  scroll-margin-top: 100px;
}

.privacy-content p {
  margin-bottom: 15px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.privacy-content ul {
  margin: 15px 0 15px 30px;
  color: var(--text-light);
}

.privacy-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
    }

.privacy-content strong {
  color: var(--text-dark);
  font-weight: 600;
}

    /* 重點提示框 */
.privacy-intro-box {
  background: #f0f8ff;
  border-left: 4px solid var(--primary-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 5px;
}

.privacy-intro-box p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

/* 頁尾資訊 */
.privacy-footer-note {
  text-align: center;
  color: #999;
  font-size: 0.9rem;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}

/* Responsive Design */
@media (max-width: 768px) {
  .privacy-content h1 {
    font-size: 2rem;
  }

  .privacy-content h2 {
    font-size: 1.5rem;
  }
}

/* ========== 16. Cookie 通知小框框 ========== */
.cookie-notice {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
  color: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  max-width: 380px;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
}

.cookie-notice.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.cookie-close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  z-index: 10;
}

.cookie-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  transform: rotate(90deg);
}

.cookie-notice-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding-right: 20px;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1;
}

.cookie-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
  color: #64b5f6;
  text-decoration: underline;
  transition: color 0.3s;
}

.cookie-text a:hover {
  color: #90caf9;
}

.cookie-accept-btn {
  background: #64b5f6;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  width: 100%;
  display: block;
}

.cookie-accept-btn:hover {
  background: #42a5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(100, 181, 246, 0.4);
}

.cookie-accept-btn:active {
  transform: translateY(0);
}

/* Reponsive Design */
@media (max-width: 768px) {
  .cookie-notice {
    bottom: 15px;
    left: 15px;
    right: auto; 
    max-width: 280px;
    padding: 15px;
    border-radius: 10px;
  }

  .cookie-close-btn {
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.15);
  }

  .cookie-notice-content {
    gap: 10px;
    margin-bottom: 12px;
    padding-right: 25px;
  }

  .cookie-icon {
    font-size: 1.2rem;
  }

  .cookie-text {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .cookie-accept-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .cookie-notice {
    max-width: 350px;
  }
}