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

body {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
  color: #2d3748;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: #167ac6;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: #0b4593;
  text-decoration: underline;
}

/* Top bar — як на головній */
.site-top-bar {
  background-color: #000000;
  text-align: center;
  padding: 4px 20px;
  border-bottom: 1px solid #EAEAEA;
}

.site-top-bar p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

/* Header — логотип по центру */
.site-header {
  text-align: center;
  padding: 10px 20px;
  border-bottom: 1px solid #F1F1F1;
  max-width: 880px;
  margin: 0 auto;
  width: 100%;
}

.site-header img {
  width: 260px;
  max-width: 65%;
  height: auto;
}

/* Main content */
.main-content {
  flex: 1;
  width: 100%;
}

.article-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 20px;
}

.article-body h1 {
  font-size: 28px;
  line-height: 1.3;
  color: #1a202c;
  margin-top: 0;
  margin-bottom: 20px;
  font-weight: 800;
}

.article-body h2 {
  font-size: 22px;
  color: #2c5e3b;
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 2px solid #f4f7f5;
  padding-bottom: 8px;
  font-weight: 800;
}

.article-body h3 {
  font-size: 18px;
  color: #1a202c;
  margin-top: 25px;
  margin-bottom: 12px;
  font-weight: 700;
}

.article-body p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #2d3748;
  line-height: 1.65;
}

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.article-body li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.6;
}

/* Contact page */
.contact-methods {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 30px 0;
  padding: 25px;
  background-color: #f4f7f5;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.contact-methods h2 {
  border-bottom: none;
  margin-top: 0;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.email-link {
  font-size: 24px;
  font-weight: 700;
  color: #167ac6;
  margin: 10px 0;
  display: inline-block;
}

.btn-email {
  display: inline-block;
  background-color: #fb627a;
  color: #ffffff !important;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none !important;
  margin-top: 15px;
  transition: background-color 0.2s ease;
  box-shadow: 0 4px 6px rgba(251, 98, 122, 0.15);
}

.btn-email:hover {
  background-color: #e04a62;
  color: #ffffff !important;
  text-decoration: none !important;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #e2e8f0;
  display: flex;
  justify-content: space-between;
}

.info-list li:last-child {
  border-bottom: none;
}

.info-list li strong {
  color: #1a202c;
}

/* Privacy table */
.table-container {
  overflow-x: auto;
  margin: 20px 0 30px;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.article-body th,
.article-body td {
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}

.article-body th {
  background-color: #f4f7f5;
  color: #1a202c;
  font-weight: 700;
}

.article-body tr:nth-child(even) {
  background-color: #fafbfc;
}

/* Thank you page */
.cta-box {
  text-align: center;
  background: #fffaf0;
  border: 2px solid #feebc8;
  padding: 40px 32px;
  border-radius: 8px;
  margin: 20px 0;
}

.cta-box h1 {
  font-size: 26px;
  margin-bottom: 16px;
}

.cta-box p:last-child {
  margin-bottom: 0;
  font-size: 14px;
  color: #718096;
}

/* Footer — як на головній */
.site-footer {
  background-color: #000000;
  color: #7B7B7B;
  text-align: center;
  padding: 20px 20px 30px;
  margin-top: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 19px;
  margin-bottom: 30px;
}

.footer-nav a {
  color: #7B7B7B;
  text-decoration: none;
  font-size: 16px;
  line-height: 26px;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #54595F;
  text-decoration: none;
}

.footer-legal {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 20px;
}

.footer-legal a {
  color: #7B7B7B;
}

.footer-legal a:hover {
  color: #54595F;
}

.footer-copy {
  font-size: 16px;
  margin: 0;
  color: #7B7B7B;
}

@media (max-width: 768px) {
  .article-body h1 {
    font-size: 24px;
  }

  .info-list li {
    flex-direction: column;
    gap: 4px;
  }

  .cta-box {
    padding: 28px 20px;
  }

  .cta-box h1 {
    font-size: 22px;
  }
}
