:root {
  --primary: #1a3d1a;
  --accent: #4caf50;
  --font: 'Inter', Arial, sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  color: #222;
  background: #fafafa;
}

a, a:visited, a:hover {
  text-decoration: none;
  color: #222;
}

h1 {
  font-size: 2.6rem;
  margin-bottom: 0;
}

h2 {
  font-size: 2.0rem;
  font-weight: 400;
  margin-top: 0;
}

h3 {
  font-size: 2.0rem;
  font-weight: 400;
}

h4 {
  margin-top: 0;
}

.hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding-bottom: 30px;
}
.hero-bg {
  width: 100%;
  height: 350px;
  object-fit: cover;
  filter: brightness(0.6);
  position: absolute;
  top: 0; left: 0; z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 60px 20px 40px 20px;
}
.logo { width: 80px; margin-bottom: 20px; }
.logo-top-left {
  position: absolute;
  top: 24px;
  left: 32px;
  width: 200px;
  z-index: 2;
}

main { max-width: 1100px; margin: 0 auto; padding: 40px; }

.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.feature {
  display: flex;
  align-items: center;
  gap: 40px;
}
.feature:nth-child(even) { 
  flex-direction: row-reverse;
}
.feature img { width: 250px; max-width: 40vw; }

.cta {
  background: #e0f7e9;
  text-align: center;
  padding: 40px 20px;
  font-size: 2rem;
  font-weight: bold;
  margin: 40px -40px 0 -40px;
}

footer {
  background: #f5f5f5;
  padding: 40px 40px 20px 40px;
  color: #222;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
}
.footer-top div { min-width: 150px; }
.footer-top div a {
  display: block;
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-bottom img { 
  width: 40px; 
  display: block;
}

@media (max-width: 900px) {
  .features { gap: 20px; }
  .feature { gap: 20px; }
}

@media (max-width: 700px) {
  .footer-top { flex-direction: column; gap: 20px; }
}

@media (max-width: 600px) {
  .feature {
    flex-direction: column !important;
    text-align: center;
  }
  .feature img { max-width: 80vw; }
  .hero-content { padding: 40px 10px 20px 10px; }
}

.hero-main {
  text-align: center;
  padding: 60px 20px 40px 20px;
  background: none;
}
.hero-main h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.1;
}
.hero-desc {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.hero-main .app-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-phones {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 20px;
}
.phone-img {
  width: 220px;
  max-width: 40vw;
  border-radius: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  background: #fff;
}
@media (max-width: 900px) {
  .hero-main h1 { font-size: 2.2rem; }
  .phone-img { width: 150px; }
}
@media (max-width: 600px) {
  .hero-main { padding: 32px 5px 20px 5px; }
  .hero-phones { flex-direction: column; gap: 16px; }
  .phone-img { width: 90vw; max-width: 300px; }
}

.feature-img-crop {
  height: 340px;
  max-width: 300px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.feature-img-crop img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .feature-img-crop {
    height: 200px;
    width: 150px;
  }
}
@media (max-width: 600px) {
  .feature-img-crop {
    height: auto;
    width: 90vw;
    max-width: 300px;
  }
} 

.text-document h1{
  font-size: 1.5rem;
  font-weight: 700;
}
.text-document h2{
  font-size: 1.2rem;
  font-weight: 700;
}
.text-document h3{
  font-size: 1.1rem;
  font-weight: 600;
}

/* Contact Form Styles */
.contact-form {
    width: 100%;
}

.contact-form textarea,
.contact-form input[type="email"] {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 15px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
    margin-bottom: 20px;
}

.contact-form textarea:focus,
.contact-form input[type="email"]:focus {
    border-color: #4caf50;
    box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
    outline: none;
}

.contact-form .form-label {
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    display: block;
}

/* Cookie Consent Popup */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #ffeccb;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  min-height: 0;
}
.cookie-content {
  max-width: 420px;
  width: 100%;
  margin: 24px;
  background: #ffeccb;
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  padding: 28px 24px 18px 24px;
  text-align: left;
  font-size: 1.08rem;
  color: #222;
}
.cookie-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: #253241;
  font-weight: 700;
}
.cookie-content p {
  margin: 0 0 10px 0;
  color: #222;
  font-size: 1.05rem;
}
.cookie-link {
  color: #253241;
  text-decoration: underline;
  font-size: 1rem;
  display: inline-block;
  margin-bottom: 16px;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn.accept {
  background: #253241;
  color: #fff;
}
.cookie-btn.accept:hover {
  background: #253241;
}
.cookie-btn.decline {
  background: #fff;
  color: #888;
  border: 1px solid #ccc;
}
.cookie-btn.decline:hover {
  background: #f5f5f5;
  color: #444;
}
@media (max-width: 600px) {
  .cookie-content {
    max-width: 98vw;
    padding: 18px 6vw 12px 6vw;
    font-size: 0.98rem;
  }
  .cookie-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cookie-btn {
    width: 100%;
    padding: 12px 0;
  }
}

.qa-item{
  margin: 10px 0;
}

.qa-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: box-shadow 0.3s ease;
}

.qa-question:hover {
  background: #e9ecef !important;
}

.toggle-icon {
  font-size: 0.8em;
  color: #666;
}

.search-form .form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.2rem rgba(76, 175, 80, 0.25);
}

.btn-submit, .btn-submit:visited {
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
}

.btn-outline-secondary {
  border-color: #6c757d;
  color: #6c757d;
}

.btn-outline-secondary:hover {
  background-color: #6c757d;
  border-color: #6c757d;
  color: white;
}