
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.hero-heading {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .hero-heading {
    font-size: 2rem;
  }
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  color: #1f2933;
  background-color: #f5f7fa;
}

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

a {
  color: #1d72b8;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e1e7f0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-wrap img {
  width: 56px;
  height: auto;
  border-radius: 8px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-weight: 700;
  font-size: 1rem;
}

.logo-sub {
  font-size: 0.8rem;
  color: #6c7a89;
}

.main-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
}

.main-nav a:hover {
  background-color: #e4f1fb;
}

.hero {
  background: linear-gradient(145deg, #e4f1fb, #ffffff);
  padding: 3rem 0 2.5rem;
}

.hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #12324a;
}

.hero-text p {
  max-width: 640px;
}

.hero-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 1.5rem;
}

.hero-list li::before {
  content: "•";
  color: #1d72b8;
  font-weight: 700;
  display: inline-block;
  width: 1rem;
  margin-left: -1rem;
}

.hero-list li {
  margin-bottom: 0.25rem;
}

.hero-images {
  display: grid;
  gap: 1rem;
}

.hero-images figure {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.6rem;
  box-shadow: 0 8px 20px rgba(15, 35, 52, 0.08);
}

.hero-images figcaption {
  font-size: 0.8rem;
  color: #6c7a89;
  margin-top: 0.4rem;
}

.section {
  padding: 3rem 0;
  background-color: #f5f7fa;
}

.section-alt {
  background-color: #ffffff;
}

.section h1,
.section h2,
.section h3 {
  color: #12324a;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 35, 52, 0.06);
}

.card h3 {
  margin-top: 0;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}

.btn-primary {
  background: #1d72b8;
  color: #ffffff;
}

.btn-primary:hover {
  background: #165a90;
  text-decoration: none;
}

.btn-secondary {
  background: #ffffff;
  color: #1d72b8;
  border: 1px solid #c3d9f3;
}

.btn-secondary:hover {
  background: #e4f1fb;
  text-decoration: none;
}

.centered {
  text-align: center;
  margin-top: 2rem;
}

.two-col {
  display: grid;
  gap: 2rem;
}

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

.checklist li::before {
  content: "✓";
  color: #15a36f;
  font-weight: 700;
  display: inline-block;
  width: 1.2rem;
  margin-left: -1.2rem;
}

.checklist li {
  margin-bottom: 0.35rem;
}

.bullet-list {
  padding-left: 1.1rem;
}

.image-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2rem;
  align-items: flex-start;
}


.image-row figure {
  background: #ffffff;
  border-radius: 12px;
  padding: 0.6rem;
  box-shadow: 0 8px 20px rgba(15, 35, 52, 0.06);
}

.highlight-box {
  background: linear-gradient(135deg, #e4f8f0, #ffffff);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid #b7e4cf;
  margin-top: 2rem;
}

.site-footer {
  background-color: #0f2535;
  color: #d1e2f3;
  margin-top: 2rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
  padding: 2rem 1.5rem 1rem;
}

.site-footer a {
  color: #e4f1fb;
}

.footer-bottom {
  border-top: 1px solid #1e3a4c;
  padding: 0.75rem 0;
  font-size: 0.8rem;
  color: #9fb3c8;
}

.legal-text h2 {
  margin-top: 1.8rem;
}

.legal-text p,
.legal-text ul {
  max-width: 760px;
}

.source-hint {
  font-size: 0.8rem;
  color: #6c7a89;
  margin-top: 1.5rem;
}

.contact-form {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(15, 35, 52, 0.06);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  border: 1px solid #cbd2dd;
  font: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #1d72b8;
  box-shadow: 0 0 0 1px rgba(29, 114, 184, 0.25);
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.checkbox-row input[type="checkbox"] {
  margin-top: 0.2rem;
}

.form-note {
  font-size: 0.75rem;
  color: #6c7a89;
  margin-top: 0.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(15, 25, 40, 0.94);
  color: #ffffff;
  padding: 0.75rem 0;
  display: none;
  z-index: 1000;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.cookie-buttons {
  margin-left: auto;
  display: flex;
  gap: 0.5rem;
}

.cookie-buttons button {
  border-radius: 999px;
  border: none;
  padding: 0.4rem 0.9rem;
  cursor: pointer;
  font-size: 0.85rem;
}

#cookieAccept {
  background-color: #15a36f;
  color: #ffffff;
}

#cookieDecline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

@media (min-width: 768px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  }

  .two-col {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .main-nav {
    flex-wrap: wrap;
    padding-bottom: 0.4rem;
  }

  .hero {
    padding-top: 2rem;
  }
}

.cta-header {
  background: #15a36f;
  color: #ffffff;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
}

.cta-header:hover {
  background: #11865a;
  text-decoration: none;
}

.sticky-contact-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #15a36f;
  color: #ffffff;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  font-weight: 600;
  font-size: 0.95rem;
  z-index: 9999;
}

.sticky-contact-btn:hover {
  background: #11865a;
  text-decoration: none;
}

@media (max-width: 480px){
  .cookie-content{
    flex-direction: column;
    align-items: flex-start;
  }
  .sticky-contact-btn{
    bottom: 80px;
    right: 20px;
  }
}

@media (max-width: 640px){
  .sticky-contact-btn{
    display: none;
  }
  .checkbox-row{
    flex-direction: column;
    align-items: flex-start;
  }
  .checkbox-row label{
    width: 100%;
  }
}
