:root {
  --primary-gradient-start: #f5e6e8;
  --primary-gradient-end: #e8d3d5;
  --text-dark: #2c2c2c;
  --text-medium: #5a5a5a;
  --text-light: #7a7a7a;
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --border-light: #e0e0e0;
}

* {
  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: var(--bg-white);
}

.gradient-bg {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.navbar {
  background: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 1rem 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-dark);
  text-decoration: none;
}

.navbar-brand:hover {
  color: var(--text-dark);
  text-decoration: none;
}

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

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

.hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-medium);
}

.section-padding {
  padding: 4rem 0;
}

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

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-block {
  background: var(--bg-white);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border: 1px solid var(--border-light);
}

.content-block h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-block h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.content-block p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-block ul {
  list-style-position: inside;
  color: var(--text-medium);
  margin-bottom: 1rem;
}

.content-block ul li {
  margin-bottom: 0.5rem;
}

.content-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.info-table {
  width: 100%;
  background: var(--bg-white);
  border-radius: 8px;
  overflow: hidden;
}

.info-table thead {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
}

.info-table th {
  padding: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
}

.info-table td {
  padding: 1rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-light);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-gradient-start) 0%, var(--primary-gradient-end) 100%);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 2rem 0;
}

.cta-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.btn-custom {
  background: var(--bg-white);
  color: var(--text-dark);
  border: 2px solid var(--text-dark);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-custom:hover {
  background: var(--text-dark);
  color: var(--bg-white);
  text-decoration: none;
}

.disclaimer-box {
  background: #fff9e6;
  border-left: 4px solid #ffc107;
  padding: 1.5rem;
  border-radius: 8px;
  margin: 2rem 0;
}

.disclaimer-box h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.disclaimer-box p {
  color: var(--text-medium);
  margin-bottom: 0.5rem;
}

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

.footer h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.footer p, .footer ul li {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--bg-white);
}

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

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

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 2rem;
  padding-top: 1rem;
  text-align: center;
  color: #999;
}

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

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

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.cookie-text p {
  margin: 0;
  color: #cccccc;
}

.cookie-text a {
  color: var(--bg-white);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-buttons button {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cookie-accept {
  background: var(--bg-white);
  color: var(--text-dark);
}

.btn-cookie-accept:hover {
  background: #e0e0e0;
}

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

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gradient-end);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-text {
    margin-right: 0;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-buttons button {
    flex: 1;
  }
}
