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

:root {
  --primary-green: #4a7c59;
  --primary-green-dark: #3d6649;
  --primary-green-light: #6b9b7a;
  --bg-light: #f8faf8;
  --bg-white: #ffffff;
  --text-dark: #2c3e2f;
  --text-muted: #5a6b5c;
  --text-light: #7a8b7c;
  --border-color: #e0e8e1;
  --shadow-sm: 0 2px 8px rgba(74, 124, 89, 0.08);
  --shadow-md: 0 4px 16px rgba(74, 124, 89, 0.12);
  --shadow-lg: 0 8px 32px rgba(74, 124, 89, 0.16);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--primary-green-dark);
  text-decoration: none;
}

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

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
}

.header .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
}

.header .navbar-brand:hover {
  color: var(--primary-green-dark);
}

.header .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.header .nav-link:hover {
  color: var(--primary-green);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%234a7c59' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

main {
  padding-top: 80px;
}

.section {
  padding: 5rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

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

.hero-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  padding: 6rem 0;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-image {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
}

.content-block {
  margin-bottom: 2rem;
}

.content-image {
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.info-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.info-card-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-green);
}

.info-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.info-card p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.culture-card {
  background: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 100%;
}

.culture-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.culture-card-body {
  padding: 1.5rem;
}

.culture-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.culture-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

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

.example-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: flex-start;
}

.example-list li:last-child {
  border-bottom: none;
}

.example-list .list-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.example-list .list-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary-green);
}

.example-list .list-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.example-list .list-content p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.tips-card {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.tips-card h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-green);
}

.tips-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.accordion .card {
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion .card-header {
  background: var(--bg-white);
  border: none;
  padding: 0;
}

.accordion .card-header button {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .card-header button:hover {
  color: var(--primary-green);
}

.accordion .card-header button:focus {
  box-shadow: none;
}

.accordion .card-header button::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--primary-green);
  transition: transform 0.3s ease;
}

.accordion .card-header button[aria-expanded="true"]::after {
  content: '−';
}

.accordion .card-body {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-muted);
}

.contact-form {
  background: var(--bg-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(74, 124, 89, 0.1);
}

.btn-primary-custom {
  background: var(--primary-green);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background 0.3s ease, transform 0.3s ease;
}

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

.btn-outline-custom {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  border-radius: 8px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-outline-custom:hover {
  background: var(--primary-green);
  color: white;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info-item svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-green);
  margin-right: 1rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.contact-info-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
  color: white;
  text-align: center;
  padding: 4rem 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

.cta-section .btn-outline-custom {
  border-color: white;
  color: white;
}

.cta-section .btn-outline-custom:hover {
  background: white;
  color: var(--primary-green);
}

.disclaimer-box {
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  margin-top: 2rem;
}

.disclaimer-box h4 {
  font-size: 1rem;
  color: var(--primary-green);
  margin-bottom: 0.75rem;
}

.disclaimer-box p {
  font-size: 0.875rem;
  margin-bottom: 0;
  color: var(--text-light);
}

.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 2rem;
}

.footer h5 {
  color: white;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-disclaimer {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 1rem;
  margin-top: 1rem;
}

.footer-disclaimer p {
  font-size: 0.8rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
}

.page-header {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header p {
  max-width: 600px;
  margin: 0 auto;
}

.policy-content {
  background: var(--bg-white);
  padding: 3rem 0;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.policy-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.about-image {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  z-index: 9999;
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.cookie-banner .btn {
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 1.875rem;
  }
  
  .hero-image {
    margin-top: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .content-image {
    margin-bottom: 1.5rem;
  }
  
  .info-card {
    margin-bottom: 1rem;
  }
  
  .culture-card {
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .page-header {
    padding: 5rem 0 3rem;
  }
}
