@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Lato:wght@300;400;500;700&display=swap');

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  /* height: 100%; */
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}
html {
  font-family: 'Lato', Arial, sans-serif; 
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
}

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

/* Body */
body {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Lato', Arial, sans-serif;
}

/* Û². ØªÛŒØªØ±Ù‡Ø§ (Headings) Ø¨Ø§ Poppins */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: inherit;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem; /* Ø­Ø¯ÙˆØ¯ 40px */
  font-weight: 700;
}

h2 {
  font-size: 2rem; /* Ø­Ø¯ÙˆØ¯ 32px */
  font-weight: 600;
}

h3 {
  font-size: 1.75rem; /* Ø­Ø¯ÙˆØ¯ 28px */
  font-weight: 500;
}


.subtitle, .btn, a, .highlight {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-weight: 500; /* ÛŒØ§ 600 Ø¨Ø³ØªÙ‡ Ø¨Ù‡ Ù†ÛŒØ§Ø² */
}

a {
  color: #007BFF;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

p {
  font-family: sans-serif;
  font-size: 1rem; /* 16px */
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

/* Ûµ. Ù„ÛŒØ³Øªâ€ŒÙ‡Ø§ */
ul, ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
  font-family: 'Lato', Arial, sans-serif;
}

/* Û¶. Ø¨Ù„Ø§Ú©â€ŒÚ©ÙˆØ¦ÙˆØª */
blockquote {
  margin: 1rem 2rem;
  padding: 0.5rem 1rem;
  font-family: 'Inter', serif;
  font-size: 1.125rem; /* 18px */
  font-style: italic;
  border-left: 4px solid #cccccc;
  background-color: #f9f9f9;
  color: #555555;
}

/* Û·. Ú©Ø¯ ØªÚ©â€ŒØ®Ø·ÛŒ Ùˆ Ú†Ù†Ø¯Ø®Ø·ÛŒ */
code {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  background-color: #f4f4f4;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
  background-color: #333333;
  color: #f1f1f1;
  padding: 1rem;
  border-radius: 5px;
  overflow-x: auto;
}

/* Û¸. Ø±ÛŒØ³Ù¾Ø§Ù†Ø³ÛŒÙˆ (Ø§Ø®ØªÛŒØ§Ø±ÛŒ) */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  body, p {
    font-size: 0.95rem;
  }
}
:root {
  --wp-columns-gutter: 2%;
  --wp-columns-mobile-break: 768px;
}

.wp-block-columns {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
  gap: var(--wp-columns-gutter);
}

.wp-block-column {
  flex: 1 1 0;
  min-width: 0;
}

.wp-block-column.is-6 {
  flex: 0 0 50%;
}

.wp-block-column.is-4 {
  flex: 0 0 33.3333%;
}

.wp-block-column.is-3 {
  flex: 0 0 25%;
}

.wp-block-column.is-8\.33 {
  flex: 0 0 8.3333%;
}

.wp-block-columns.align-top {
  align-items: flex-start;
}
.wp-block-columns.align-center {
  align-items: center;
}
.wp-block-columns.align-bottom {
  align-items: flex-end;
}

.wp-block-column.order-1 { order: 1; }
.wp-block-column.order-2 { order: 2; }

@media (max-width: var(--wp-columns-mobile-break)) {
  .wp-block-columns {
    display: block;
  }
  .wp-block-column {
    width: 100% !important;
    flex: none !important;
    margin-bottom: 1em;
    order: 0;
  }
}

[dir="rtl"] .wp-block-columns {
  gap: var(--wp-columns-gutter) 0;
}

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

.wp-block-column .wp-block-image {
  margin: 0;
}

.wp-block-column.has-fixed-image-height img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.wp-block-column .is-style-rounded img {
  border-radius: 8px;
}

.wp-block-column .alignleft img {
  float: left;
  margin: 0 1em 1em 0;
  width: auto;
  max-width: 50%;
}
.wp-block-column .alignright img {
  float: right;
  margin: 0 0 1em 1em;
  width: auto;
  max-width: 50%;
}
.wp-block-column .aligncenter {
  text-align: center;
}
.wp-block-column .aligncenter img {
  display: inline-block;
  margin: 0 auto 1em;
  width: auto;
  max-width: 100%;
}

@media (max-width: var(--wp-columns-mobile-break)) {
  .wp-block-column.has-fixed-image-height img {
    height: auto !important;
    object-fit: unset !important;
  }
}
.x1400 .wp-block-columns {
    max-width: 1400px;
    width: 100%;
    display: flex;
    align-items: center;
}
.fullsection{
  display:flex;
  flex-direction: column;
}
.fullsection .wp-block-columns {
  width: 90%;
}
