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

:root {
  --primary-color: #2d6e44;
  --secondary-color: #1a472a;
  --accent-color: #52b788;
  --light-bg: #f8faf9;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --border-color: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

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

.navbar {
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.brand-icon {
  color: var(--primary-color);
  margin-right: 8px;
}

.hero-section {
  min-height: 500px;
  display: flex;
  align-items: center;
  padding: 60px 0;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-section img {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.page-header {
  border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 30px;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: white;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background-color: var(--primary-color) !important;
}

.badge-success {
  background-color: var(--accent-color);
}

.form-control {
  border: 1px solid var(--border-color);
  padding: 10px 15px;
  font-size: 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(45, 110, 68, 0.25);
}

.invalid-feedback {
  color: #dc3545;
}

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

.accordion .btn-link {
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.accordion .btn-link:focus {
  outline: none;
  box-shadow: none;
  color: var(--primary-color);
}

footer {
  background-color: #1a1a1a;
  border-top: 1px solid var(--border-color);
}

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

footer a:hover {
  color: white !important;
}

.list-unstyled li {
  margin-bottom: 10px;
}

section {
  position: relative;
}

h2,
h3,
h4,
h5 {
  color: var(--text-dark);
  font-weight: 600;
}

.alert-warning {
  background-color: #fff3cd;
  border-color: #ffc107;
  color: #856404;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    padding: 40px 0;
  }

  .hero-section h1 {
    font-size: 2rem;
  }

  .hero-section .col-lg-6 {
    margin-bottom: 20px;
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .display-4 {
    font-size: 1.75rem !important;
  }

  .lead {
    font-size: 1.1rem;
  }

  .navbar-collapse {
    background-color: white;
    border-top: 1px solid var(--border-color);
    margin-top: 10px;
  }

  footer .text-right {
    text-align: left !important;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 1.5rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .display-4 {
    font-size: 1.5rem !important;
  }

  .card-body {
    padding: 1rem;
  }

  address {
    font-size: 0.9rem;
  }

  .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px;
  }
}

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

.form-check {
  display: flex;
  align-items: flex-start;
}

.form-check-input {
  margin-top: 5px;
  margin-right: 10px;
}

.form-check-label {
  margin-bottom: 0;
  line-height: 1.5;
}

.text-muted {
  color: var(--text-muted);
}

img {
  max-width: 100%;
  height: auto;
}

.d-flex {
  display: flex;
}

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

.align-items-start {
  align-items: flex-start;
}

.justify-content-between {
  justify-content: space-between;
}

.container {
  max-width: 1200px;
}

.py-5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 3rem;
}
