:root {
  --primary-color: #2c5530;
  --secondary-color: #d4a574;
  --accent-color: #8b4513;
  --text-dark: #2d2d2d;
  --text-light: #666;
  --bg-light: #faf8f5;
  --bg-white: #ffffff;
  --border-color: #e5e5e5;
  --success-color: #28a745;
  --error-color: #dc3545;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.logo span {
  color: var(--secondary-color);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s;
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-color);
}

.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/pexels-alexy-almond-3756496.jpg') center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 30px;
  opacity: 0.95;
}

.hero-audience {
  font-size: 1.1rem;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
}

.hero-solution {
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-style: italic;
}

.btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--secondary-color);
  color: var(--text-dark);
}

.btn-primary:hover {
  background-color: #c49561;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: var(--primary-color);
  color: var(--bg-white);
}

.btn-secondary:hover {
  background-color: #1e3d21;
  transform: translateY(-2px);
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

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

.service-card-content {
  padding: 25px;
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--text-light);
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/pexels-olly-3767425.jpg') center/cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.about-content {
  max-width: 800px;
}

.about-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.value-card {
  text-align: center;
  padding: 30px;
  background: var(--bg-light);
  border-radius: 10px;
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 15px;
}

.lead-form {
  background: var(--bg-light);
  padding: 50px;
  border-radius: 10px;
  max-width: 600px;
  margin: 0 auto;
}

.lead-form h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-size: 1.8rem;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

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

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

.consent-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
}

.consent-group label {
  font-size: 0.9rem;
  color: var(--text-light);
}

.consent-group label a {
  color: var(--primary-color);
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info {
  background: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
}

.contact-info h3 {
  color: var(--primary-color);
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  flex-shrink: 0;
}

.contact-item-content h4 {
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-item-content p {
  color: var(--text-light);
}

.contact-item-content a {
  color: var(--primary-color);
  text-decoration: none;
}

.business-hours {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.business-hours h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
}

.business-hours p {
  color: var(--text-light);
  margin-bottom: 5px;
}

.map-container {
  margin-top: 30px;
  border-radius: 10px;
  overflow: hidden;
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

footer {
  background-color: var(--primary-color);
  color: var(--bg-white);
  padding: 50px 0 20px;
}

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

.footer-section h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--secondary-color);
}

.footer-section p {
  margin-bottom: 10px;
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

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

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

.footer-disclaimer {
  font-size: 0.85rem;
  opacity: 0.8;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  font-size: 0.9rem;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text-dark);
  color: var(--bg-white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s;
}

.cookie-banner.show {
  transform: translateY(0);
}

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

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

.cookie-text p {
  margin-bottom: 10px;
}

.cookie-text a {
  color: var(--secondary-color);
}

.cookie-options {
  display: none;
  background: rgba(255,255,255,0.1);
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
}

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

.cookie-options label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}

.btn-accept {
  background: var(--secondary-color);
  color: var(--text-dark);
}

.btn-reject {
  background: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.btn-configure {
  background: transparent;
  border: 1px solid var(--bg-white);
  color: var(--bg-white);
}

.page-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/pexels-wendywei-14968378.jpg') center/cover;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.page-hero h1 {
  font-size: 2.5rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.legal-content h1 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.legal-content h2 {
  color: var(--primary-color);
  margin: 30px 0 15px;
  font-size: 1.4rem;
}

.legal-content h3 {
  color: var(--text-dark);
  margin: 20px 0 10px;
  font-size: 1.2rem;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text-light);
}

.legal-content ul {
  margin-bottom: 15px;
  padding-left: 30px;
  color: var(--text-light);
}

.legal-content ul li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--primary-color);
}

.services-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/pexels-shotpot-7705355.jpg') center/cover;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--bg-white);
  padding-top: 80px;
}

.services-detailed {
  padding: 80px 0;
}

.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
}

.service-detail-content h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-detail-content ul {
  list-style: none;
  margin-top: 20px;
}

.service-detail-content ul li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.service-detail-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

.business-model-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.business-model-content h1 {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

.model-section {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.model-section h2 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.model-section p {
  color: var(--text-light);
  margin-bottom: 15px;
}

.model-section ul {
  list-style: none;
  margin-top: 15px;
}

.model-section ul li {
  padding: 8px 0;
  color: var(--text-light);
  position: relative;
  padding-left: 25px;
}

.model-section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--secondary-color);
  font-weight: bold;
}

@media (max-width: 992px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .lead-form {
    padding: 30px 20px;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  section {
    padding: 60px 0;
  }
}
