@charset "UTF-8";
/* --- Renk Değişkenleri --- */
:root {
  --white: #f9f9f9;
  --dark-green: #1c4425;
  --orange: #ff5c00;
  --olive-green: #46664e;
  --light-green: #f1f8e7;
  --green: #93d35c;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  background-color: var(--light-green);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* --- Ana Bileşen --- */
.terms-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 80px 20px;
  box-sizing: border-box;
  margin-top: 40px;
}
.terms-container {
  width: 100%;
  max-width: 800px;
  padding: 60px;
}
@media (max-width: 768px) {
  .terms-container {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.terms-little-title {
  text-align: center;
  margin: 0 0 12px 0;
  color: var(--dark-green);
  font-size: clamp(0.875rem, 2vw, 1rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.terms-title {
  text-align: center;
  margin: 0 0 24px 0;
  color: var(--dark-green);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.terms-intro {
  text-align: center;
  margin-bottom: 48px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.6;
  color: var(--olive-green);
}
.terms-main-list {
  padding-left: 0;
  list-style: none;
}
.terms-main-list > li {
  margin-bottom: 40px;
  padding-left: 40px;
}
@media (max-width: 768px) {
  .terms-main-list > li {
    padding-left: 16px;
  }
}
.terms-main-list > li h2 {
  display: block;
  font-size: clamp(1.25rem, 3.5vw, 1.8rem);
  margin: 0 0 16px 0;
  color: var(--dark-green);
  font-weight: 800;
  line-height: 1.3;
}
.terms-sub-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.terms-sub-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--olive-green);
  line-height: 1.6;
}
.terms-sub-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: bold;
}
.terms-contact-link {
  color: var(--dark-green);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.terms-contact-link:hover {
  color: var(--orange);
}

.contact-desc {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--olive-green);
  margin: 0 0 16px 0;
  line-height: 1.6;
}/*# sourceMappingURL=termsconditions-privacypolicy.css.map */