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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #2C2420;
  background-color: #FAF8F5;
}

.header {
  border-bottom: 1px solid #E8E2DB;
  background-color: white;
  position: relative;
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 32px;
  height: 32px;
  color: #8B7355;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: -0.025em;
  color: #2C2420;
}

.logo-subtitle {
  font-size: 12px;
  font-weight: 300;
  color: #8B7355;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
  text-decoration: none;
  color: #5C544F;
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: #2C2420;
}

.dropdown {
  position: relative;
  z-index: 50;
}

.dropdown-button {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
  color: #5C544F;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  padding: 12px 0;
}

.dropdown-button:hover {
  color: #2C2420;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 256px;
  background-color: white;
  border: 1px solid #E8E2DB;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  display: none;
  z-index: 100;
  margin-top: -4px;
  padding-top: 4px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #2C2420;
  border-bottom: 1px solid #F5F1EC;
  transition: background-color 0.2s;
}

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

.dropdown-item:hover {
  background-color: #FAF8F5;
}

.dropdown-item-title {
  font-size: 14px;
  font-weight: 400;
}

.dropdown-item-desc {
  font-size: 12px;
  color: #8B7355;
  margin-top: 4px;
}

.footer {
  background-color: #2C2420;
  color: white;
  padding: 48px 16px 24px;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}

.footer-section h3 {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 16px;
}

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

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

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 300;
  transition: color 0.2s;
}

.footer-link:hover {
  color: white;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
}

.hero {
  padding: 128px 16px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  max-width: 896px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 60px;
  font-weight: 300;
  margin-bottom: 32px;
  letter-spacing: -0.025em;
}

.hero p {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 64px 16px;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-title {
  font-size: 36px;
  font-weight: 300;
  color: #2C2420;
  margin-bottom: 48px;
  text-align: center;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.card {
  background-color: white;
  border: 1px solid #E8E2DB;
  padding: 32px;
}

.card-icon {
  width: 40px;
  height: 40px;
  color: #8B7355;
  margin-bottom: 16px;
}

.card-title {
  font-size: 20px;
  font-weight: 400;
  color: #2C2420;
  margin-bottom: 12px;
}

.card-text {
  color: #5C544F;
  font-weight: 300;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #2C2420;
  color: white;
  text-decoration: none;
  font-weight: 300;
  letter-spacing: 0.025em;
  transition: background-color 0.2s;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn:hover {
  background-color: #3D332D;
}

.btn-white {
  background-color: white;
  color: #2C2420;
}

.btn-white:hover {
  background-color: #F5F1EC;
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: #2C2420;
  margin-bottom: 8px;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #E8E2DB;
  font-family: inherit;
  font-weight: 300;
  color: #2C2420;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #8B7355;
}

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

.bg-white {
  background-color: white;
}

.bg-light {
  background-color: #F5F1EC;
}

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 16px;
}

.mb-4 {
  margin-bottom: 16px;
}

.py-16 {
  padding-top: 64px;
  padding-bottom: 64px;
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  border-top: 1px solid #E8E2DB;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 1000;
  display: none;
  animation: slideUp 0.3s ease-out;
}

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

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.cookie-consent-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 300px;
}

.cookie-consent-text h3 {
  font-size: 18px;
  font-weight: 400;
  color: #2C2420;
  margin-bottom: 8px;
}

.cookie-consent-text p {
  font-size: 14px;
  font-weight: 300;
  color: #5C544F;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: #8B7355;
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  border-radius: 4px;
}

.cookie-btn-accept {
  background-color: #8B7355;
  color: white;
}

.cookie-btn-accept:hover {
  background-color: #6D5A43;
}

.cookie-btn-decline {
  background-color: transparent;
  color: #5C544F;
  border: 1px solid #E8E2DB;
}

.cookie-btn-decline:hover {
  background-color: #FAF8F5;
}

@media (max-width: 768px) {
  .cookie-consent-container {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-actions {
    justify-content: stretch;
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}
