:root {
  --accent-color: #FF6347;
  --text-dark: #333333;
  --text-gray: #666666;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  background-color: var(--white);
}
header {
  background-color: var(--white);
  border-bottom: 1px solid #E5E5E5;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 15px 0;
}
.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}
.nav-link {
  color: var(--text-dark);
  font-size: 15px;
  margin-left: 30px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: var(--accent-color);
  text-decoration: none;
}
main {
  margin-top: 70px;
  padding-top: 40px;
}
section {
  padding: 60px 0;
}
.section-light {
  background-color: var(--bg-light);
}
.section-white {
  background-color: var(--white);
}
h1 {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--text-dark);
}
h2 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--text-dark);
}
h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 15px;
  color: var(--text-dark);
}
p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--text-gray);
}
.hero-section {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, #FFF5F3 0%, #FFFFFF 100%);
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.content-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.content-image-right {
  float: right;
  margin: 0 0 20px 30px;
  max-width: 45%;
}
.content-image-left {
  float: left;
  margin: 0 30px 20px 0;
  max-width: 45%;
}
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--white);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background-color: #E5533D;
  border-color: #E5533D;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255,99,71,0.3);
  text-decoration: none;
}
.btn-outline {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  padding: 12px 30px;
  font-size: 16px;
  border-radius: 6px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}
.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
  text-decoration: none;
}
.card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.card-img-top {
  height: 220px;
  object-fit: cover;
}
.card-body {
  padding: 25px;
}
.card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.card-text {
  font-size: 15px;
  color: var(--text-gray);
  line-height: 1.6;
}
.disclaimer-box {
  background-color: #FFF5F3;
  border-left: 4px solid var(--accent-color);
  padding: 20px 25px;
  margin: 30px 0;
  border-radius: 6px;
}
.disclaimer-box p {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-gray);
}
.disclaimer-box p:last-child {
  margin-bottom: 0;
}
footer {
  background-color: #2C2C2C;
  color: #FFFFFF;
  padding: 50px 0 30px;
}
footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #FFFFFF;
}
footer p, footer a {
  font-size: 14px;
  color: #CCCCCC;
  line-height: 1.8;
}
footer a {
  text-decoration: none;
  transition: color 0.3s ease;
}
footer a:hover {
  color: var(--accent-color);
  text-decoration: none;
}
.footer-link {
  display: block;
  margin-bottom: 8px;
}
.copyright {
  border-top: 1px solid #444444;
  margin-top: 40px;
  padding-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #999999;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C2C2C;
  color: #FFFFFF;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  display: none;
}
.cookie-banner.show {
  display: block;
}
.cookie-banner p {
  color: #FFFFFF;
  margin-bottom: 10px;
  font-size: 14px;
}
.cookie-banner a {
  color: var(--accent-color);
  text-decoration: underline;
}
.cookie-banner a:hover {
  color: #E5533D;
}
.form-control {
  border-radius: 6px;
  border: 1px solid #DDDDDD;
  padding: 12px 15px;
  font-size: 15px;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(255,99,71,0.15);
}
.policy-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}
.policy-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
}
.policy-content ul {
  margin-bottom: 20px;
  padding-left: 20px;
}
.policy-content li {
  margin-bottom: 8px;
  color: var(--text-gray);
}
@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
  }
  .nav-link {
    margin-left: 15px;
    font-size: 14px;
  }
  .content-image-right,
  .content-image-left {
    float: none;
    max-width: 100%;
    margin: 0 0 20px 0;
  }
  section {
    padding: 40px 0;
  }
  .hero-section {
    padding: 60px 0 40px;
  }
}
