@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@100..900&display=swap");

body {
  font-family: "Noto Sans Georgian", serif;
  background-color: #f9f9f9;
  color: #212121;
}

:root {
  --dark: #121317;
  --secondary-dark: #212936;
  --green: #4eda7c;
  --yellow: #ffbb33;
  --blue: #33aaff;
  --red: #ee443f;
  --white: #f9fafb;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Heading 1 - Main Title */
h1 {
  color: var(--secondary-dark);
  font-size: 39px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

/* Heading 2 - Section Titles */
.rich_text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 15px;
  border-left: 4px solid var(--green);
  padding-left: 12px;
}

.rich_text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 15px;
}

.rich_text h3 strong span {
  font-weight: 700 !important;
}

.rich_text h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--secondary-dark);
  margin-bottom: 15px;
}

/* Paragraphs */
.rich_text p {
  color: var(--secondary-dark);
  margin-bottom: 20px !important;
  line-height: 1.5 !important;
}

.rich_text p span {
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  color: var(--secondary-dark);
  line-height: 1.5 !important;
}

/* Unordered List Styling */
.rich_text ul {
  margin: 0 0 20px 20px;
  padding: 0;
  list-style: disc;
}

/* List Items */
.rich_text li {
  margin-bottom: 10px;
  line-height: 1.5;
}

/* Strong elements */
.rich_text strong {
  font-weight: 800;
}

/* Links */
.rich_text a {
  color: #0077cc;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}

.rich_text a:hover {
  color: #005799;
  text-decoration: none;
}

/* Tables */
.rich_text table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
  color: #e0e0e0;
  background-color: var(--secondary-dark);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--green);
}

/* Table Header */
.rich_text thead th {
  background-color: #213448;
  color: #ffffff;
  padding: 14px 16px;
  text-align: left;
}

.rich_text thead tr td p {
  background-color: var(--white);
  color: #ffffff !important;
  padding: 14px 16px;
  text-align: left;
  margin: 0px !important;
}

.rich_text thead tr td p strong {
  color: white;
}

/* Table Body */
.rich_text tbody td {
  padding: 14px 16px;
  border: 1px solid var(--brand);
}

.rich_text tbody tr td p {
  font-size: 16px;
  color: white !important;
  margin: 0px !important;
  font-weight: 400;
}

.rich_text tbody tr td p strong {
  color: white;
}

/* Row Striping */
.rich_text tbody tr:nth-child(even) {
  background-color: black;
}
.rich_text tbody tr:hover {
  background-color: var(--light-dark);
}

@media screen and (max-width: 1290px) {
  .container_mobile {
    padding: 0px 15px;
  }
}

@media screen and (max-width: 768px) {
  .rich_text h1 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .rich_text h2 {
    font-size: 22px;
    line-height: 1.1;
  }

  .rich_text h3 {
    font-size: 19px;
  }

  .rich_text h4 {
    font-size: 1rem;
  }
}
