:root {
  --primary-color: #FF8C00;
  --text-dark: #333333;
  --text-light: #666666;
  --bg-light: #F9F9F9;
  --white: #FFFFFF;
  --border-color: #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-color: var(--white);
}

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

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

.nav-link {
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 16px;
  transition: color 0.3s ease;
  text-decoration: none;
}

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 10px 24px;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.btn-primary:hover {
  background-color: #e67e00;
  border-color: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}

.hero-section {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #FFF5E6 0%, #FFFFFF 100%);
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 20px;
  color: var(--text-light);
  margin-bottom: 30px;
}

.hero-image {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 40px;
}

.content-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.content-image.float-left {
  float: left;
  margin-right: 30px;
  max-width: 45%;
}

.content-image.float-right {
  float: right;
  margin-left: 30px;
  max-width: 45%;
}

.card {
  border: 1px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-img-top {
  height: 220px;
  object-fit: cover;
}

.card-body {
  padding: 25px;
}

.card-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.card-text {
  color: var(--text-light);
  font-size: 15px;
}

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

.footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 50px 0 30px;
  margin-top: 80px;
}

.footer h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.footer a {
  color: #CCCCCC;
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 10px;
}

.footer a:hover {
  color: var(--primary-color);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid #555555;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #CCCCCC;
  font-size: 14px;
}

.info-box {
  background-color: #FFF8F0;
  border-left: 4px solid var(--primary-color);
  padding: 20px;
  margin: 30px 0;
  border-radius: 5px;
}

.info-box h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.list-styled {
  list-style: none;
  padding-left: 0;
}

.list-styled li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.list-styled li:before {
  content: "✓";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  font-size: 20px;
}

.contact-form {
  background-color: var(--bg-light);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

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

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

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-banner .btn {
  font-size: 14px;
  padding: 8px 20px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 32px;
  }
  
  .hero-section p {
    font-size: 16px;
  }
  
  .section-title {
    font-size: 28px;
  }
  
  .content-image.float-left,
  .content-image.float-right {
    float: none;
    max-width: 100%;
    margin: 20px 0;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .footer {
    text-align: center;
  }
}
