:root {
  --primary-color: #ff9a7b;
  --primary-dark: #e8856a;
  --secondary-color: #2c3e50;
  --text-color: #333333;
  --text-light: #666666;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e0e0e0;
  --shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
  --header-height: 70px;
}

* {
  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-color);
  line-height: 1.6;
  background-color: var(--bg-white);
}

.site-header {
  background-color: var(--bg-white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

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

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

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border: none;
  color: var(--bg-white);
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #fff5f2 0%, #ffe8e0 100%);
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-section h1 {
  color: var(--secondary-color);
  font-weight: 700;
  line-height: 1.2;
}

.hero-section .lead {
  color: var(--text-light);
  font-size: 1.2rem;
}

.content-section {
  padding: 80px 0;
}

.section-title {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.info-box {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.info-box h5 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.info-box.border-accent {
  border-color: var(--primary-color);
}

.info-box.bg-light-accent {
  background-color: #fff5f2;
}

img.rounded {
  border-radius: 12px;
}

.shadow-sm {
  box-shadow: var(--shadow);
}

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

.card-header {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.card-header button {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  width: 100%;
  text-align: left;
}

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

.contact-info {
  padding: 1.5rem;
  background-color: var(--bg-light);
  border-radius: 12px;
}

.contact-info h5 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0.75rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 154, 123, 0.25);
}

.site-footer {
  background-color: var(--secondary-color);
  color: var(--bg-white);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.site-footer h5 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.site-footer a {
  color: var(--bg-white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.site-footer a:hover {
  opacity: 1;
}

.site-footer ul {
  padding-left: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

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

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

.cookie-banner p {
  margin-bottom: 0;
}

.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.cookie-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-modal-content {
  background-color: var(--bg-white);
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-modal-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-modal-header h5 {
  margin: 0;
  font-weight: 700;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-color);
}

.cookie-modal-body {
  padding: 1.5rem;
}

.cookie-modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: right;
}

.thank-you-box {
  padding: 3rem 2rem;
  background-color: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  color: var(--secondary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.policy-section ul {
  margin-left: 1.5rem;
}

.policy-section ul li {
  margin-bottom: 0.5rem;
}

html {
  scroll-behavior: smooth;
}

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

  .content-section {
    padding: 60px 0;
  }

  .navbar-nav {
    margin-top: 1rem;
  }

  .btn-primary.ml-lg-3 {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

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