:root {
  --blue-dark: #11336b;
  --yellow-accent: #ffcb42;
  --text-blue: #11336b;
  --border-gray: #e0e0e0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(50% - 200px);
}
body {
  margin: 0;
  font-family: "PT Serif", serif;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  justify-content: center;
  display: flex;
  align-items: center;
}
.top-bar {
  background: linear-gradient(to bottom, #003978 80px, #fff 80px);
  color: white;
  height: 65px;
}
.bar-content {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
.burger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.burger-menu span {
  display: block;
  width: 25px;
  height: 2px;
  background: white;
}
.main-logo {
  color: white;
  text-decoration: none;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 1px;
}
.bar-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}
.link-login {
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-family: Arial;
}
.btn-yellow {
  background: var(--yellow-accent);
  color: #000;
  padding: 8px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  font-family: Arial;
}
.nav-bar {
  background: white;
  border-bottom: 1px solid var(--border-gray);
  height: 50px;
  overflow: hidden;
}
.nav-content {
  height: 100%;
  position: relative;
}
.home-icon {
  color: var(--text-blue);
  margin-right: 20px;
  display: flex;
}
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.nav-links::-webkit-scrollbar {
  display: none;
}
.nav-links li a {
  text-decoration: none;
  color: var(--text-blue);
  font-size: 15px;
  white-space: nowrap;
}
.nav-arrow {
  color: var(--text-blue);
  cursor: pointer;
  padding-left: 10px;
  background: linear-gradient(to right, transparent, white 20%);
}
@media (max-width: 1024px) {
  .nav-links {
    gap: 15px;
  }
  .nav-links li a {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .link-login {
    display: none;
  }
  .main-logo {
    font-size: 22px;
  }
  .nav-bar {
    height: 45px;
  }
}
@media (max-width: 480px) {
  .btn-yellow {
    padding: 6px 12px;
    font-size: 11px;
  }
  .nav-links li a {
    font-size: 13px;
  }
}
:root {
  --blue-main: #11336b;
  --text-gray: #333;
  --light-gray: #f8f8f8;
  --border-color: #e0e0e0;
}
.site-footer {
  font-family: Arial, sans-serif;
  color: var(--text-gray);
  padding: 40px 0 20px;
  background: #fff;
  border-top: 1px solid var(--border-color);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.footer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.footer-logo {
  background: var(--blue-main);
  color: #fff;
  padding: 5px 15px;
  font-family: "Georgia", serif;
  font-size: 24px;
  font-weight: bold;
  display: inline-block;
}
.footer-tagline {
  font-family: "Georgia", serif;
  margin: 5px 0 0;
  font-size: 14px;
  color: #11336b;
}
.btn-newsletter {
  background: var(--blue-main);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  margin-left: 15px;
}
.btn-up {
  border: 1px solid var(--blue-main);
  background: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  margin-left: 10px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1.5fr 1fr;
  gap: 40px;
  padding: 20px 0;
}
.footer-col h3 {
  font-size: 12px;
  color: var(--blue-main);
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.sub-grid {
  display: flex;
  gap: 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  text-decoration: none;
  color: #11336b;
  font-size: 13px;
}
.footer-col ul li a:hover {
  text-decoration: underline;
}
.footer-social {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 20px 0;
  font-size: 13px;
  font-weight: bold;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.footer-social a {
  color: var(--blue-main);
  text-decoration: none;
}
.footer-divider {
  border: 0;
  border-top: 1px solid var(--border-color);
  margin: 0;
}
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer-header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .btn-newsletter {
    display: block;
    margin: 10px auto;
  }
}
@media (max-width: 480px) {
  .sub-grid {
    flex-direction: column;
    gap: 0;
  }
  .footer-social {
    flex-wrap: wrap;
    gap: 15px;
  }
}
:root {
  --text-blue: #11336b;
  --border-color: #d1d1d1;
  --bg-white: #ffffff;
}
.bottom-legal-area {
  padding: 20px 0;
  border-top: 1px solid var(--border-color);
  font-family: Arial, sans-serif;
  background-color: #fff;
}
.legal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.legal-block {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  color: var(--text-blue);
  line-height: 1.4;
}
.logo-placeholder {
  flex-shrink: 0;
}
.img-cdj {
  width: 80px;
  height: 50px;
}
.img-source-sure {
  width: 50px;
  height: 60px;
  border-left: 1px solid var(--border-color);
  padding-left: 15px;
}
.img-cim {
  width: 100px;
  height: 40px;
}
.legal-block p {
  margin: 0;
  max-width: 350px;
}
.legal-block a {
  color: var(--text-blue);
  text-decoration: underline;
  font-weight: bold;
}
.legal-links-list nav {
  color: var(--text-blue);
}
.legal-links-list a {
  text-decoration: none;
  font-weight: normal;
  border-bottom: 1px solid transparent;
}
.legal-links-list a:hover {
  border-bottom: 1px solid var(--text-blue);
}
.sticky-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--bg-white);
  border-top: 2px solid var(--text-blue);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  height: 50px;
}
.nav-tabs {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
}
.tab-item {
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  text-decoration: none;
  color: var(--text-blue);
  font-weight: bold;
  font-size: 16px;
  border-right: 1px solid var(--border-color);
}
.tab-share {
  display: flex;
  align-items: center;
  padding-left: 20px;
  gap: 15px;
  color: var(--text-blue);
  font-weight: bold;
}
.share-icons {
  display: flex;
  gap: 12px;
}
.share-icons a {
  width: 20px;
  height: 20px;
  display: inline-block;
  border-radius: 4px;
}
@media (max-width: 1024px) {
  .legal-content {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
  .legal-block {
    flex-direction: column;
    width: 45%;
  }
  .img-source-sure {
    border-left: none;
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .legal-block {
    width: 100%;
  }
  .tab-item {
    font-size: 13px;
    padding: 0 10px;
  }
  .tab-share span {
    display: none;
  }
}
@media (max-width: 480px) {
  .sticky-bottom-nav {
    height: auto;
    padding: 5px 0;
  }
  .nav-tabs {
    flex-wrap: wrap;
    gap: 5px;
    padding: 0 5px;
  }
  .tab-item {
    border: none;
    height: 35px;
  }
}
:root {
  --le-soir-blue: #11336b;
  --border-gray: #ccc;
}
:root {
  --le-soir-blue: #11336b;
  --text-gray: #555;
  --divider-gray: #ccc;
}
.author-block {
  font-family: Arial, sans-serif;
  padding: 20px 0;
  max-width: 500px;
}
.author-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.author-avatar {
  border-radius: 50%;
  overflow: hidden;
  margin-right: 20px;
  background-color: #eee;
}
.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.author-details {
  border-left: 2px solid var(--le-soir-blue);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 55px;
}
.author-role {
  color: var(--le-soir-blue);
  font-size: 20px;
  margin-bottom: 4px;
}
.author-name {
  color: var(--le-soir-blue);
  font-size: 18px;
}
.author-name strong {
  font-weight: 800;
}
.article-meta {
  display: flex;
  align-items: center;
  color: var(--text-gray);
  font-size: 15px;
  border-top: 1px solid #eee;
  padding-top: 12px;
}
.meta-divider {
  width: 1px;
  height: 25px;
  background-color: var(--divider-gray);
  margin: 0 15px;
}
.meta-reading-time {
  display: flex;
  align-items: center;
  gap: 8px;
}
.icon-clock {
  color: var(--text-gray);
  opacity: 0.8;
}
.share-icons img {
  margin: 0;
}
@media (max-width: 600px) {
  .author-role {
    font-size: 17px;
  }
  .author-name {
    font-size: 16px;
  }
  .article-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .meta-divider {
    display: none;
  }
}
:root {
  --green-solid: #008000;
  --text-dark: #333;
}
.leader-list {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  font-family: "Georgia", serif;
}
.leader-row {
  display: grid;
  grid-template-columns: 40px 65px 180px 1fr 120px;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.leader-rank {
  font-size: 18px;
  color: #666;
}
.leader-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}
.leader-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
}
.leader-name {
  font-size: 18px;
  color: var(--text-dark);
}
.leader-progress {
  height: 28px;
  width: 100%;
  background: transparent;
}
.progress-fill {
  height: 100%;
  background-color: var(--green-solid);
  border-radius: 6px;
  width: 0;
  animation: growWidth 1.5s ease-out forwards;
  animation-delay: var(--delay);
  background-image: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 25%,
    transparent 25%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.1) 75%,
    transparent 75%,
    transparent
  );
  background-size: 30px 30px;
}
.leader-value {
  font-size: 18px;
  text-align: right;
  font-weight: bold;
}
@keyframes growWidth {
  from {
    width: 0;
  }
  to {
    width: var(--percent);
  }
}
@media (max-width: 768px) {
  .leader-row {
    grid-template-columns: 30px 50px 1fr 90px;
    grid-template-areas: "rank avatar name value" ". . progress progress";
    gap: 8px;
  }
  .leader-avatar {
    width: 45px;
    height: 45px;
  }
  .leader-progress {
    grid-area: progress;
    height: 12px;
  }
}
.calculator-wrapper {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;
  max-width: 500px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: Arial, sans-serif;
  margin: 20px auto;
}
.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.label-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  font-size: 12px;
  color: #444;
}
.label-item::after {
  content: "";
  width: 1.5px;
  height: 7px;
  background: #000;
  margin-top: 4px;
}
.calc-range-area {
  margin-bottom: 25px;
}
#investment-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: #dcdcdc;
  border-radius: 5px;
  outline: none;
}
#investment-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 2px solid #5d9cec;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
#investment-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border: 2px solid #5d9cec;
  border-radius: 50%;
  cursor: pointer;
}
.calc-current-value {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
#display-value {
  border: 1.5px solid #4a8c3c;
  color: #4a8c3c;
  padding: 8px 20px;
  font-weight: bold;
  font-size: 18px;
  border-radius: 2px;
}
.calc-results {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.result-box {
  background-color: #f2f7fa;
  padding: 14px;
  text-align: center;
  border-radius: 6px;
  font-size: 16px;
  color: #333;
}
.result-box span {
  font-weight: bold;
}
@media (max-width: 480px) {
  .calculator-wrapper {
    padding: 15px;
  }
  .label-item span {
    font-size: 10px;
  }
  .result-box {
    font-size: 14px;
    padding: 12px;
  }
}
body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu,
    Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}
.hero {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px;
}
h1 {
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
  margin-bottom: 25px;
}
h2 {
  font-size: 18px;
  font-weight: 700;
  color: #444;
  padding-left: 15px;
  margin: 30px 0;
}
h3 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
}
p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #333;
}
a {
  color: #040020;
  text-decoration: none;
  font-weight: bold;
  text-decoration: underline;
}
.author-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 30px 0;
}
.author-info {
  display: flex;
  align-items: center;
}
.author-avatar img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}
.author-role {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
}
.author-name {
  font-size: 16px;
}
.article-meta {
  font-size: 14px;
  color: #666;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
}
.form-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 30px;
  border: 2px solid #000;
  border-radius: 20px;
  background: #fff;
}
.form-container h4 {
  background-color: #ff1e00;
  color: white;
  text-align: center;
  margin: 0 auto;
  padding: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  margin-top: 20px;
  max-width: 500px;
}
.yellow-block {
  background-color: #fffce6;
  padding: 20px;
  border-radius: 10px;
  margin: 30px 0;
  text-align: center;
}
.yellow-block h4 {
  margin: 10px 0;
  font-size: 18px;
  text-align: left;
  color: #333;
}
@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }
  .hero {
    padding: 10px;
  }
  .author-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .form-container {
    padding: 20px;
    margin: 20px 10px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 29px;
  }
  p {
    font-size: 16px;
  }
}
.comments-wrap {
  max-width: 800px;
  margin: 40px auto;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 0 15px;
}
.comments-form {
  border: 1px solid #ccc;
  margin-bottom: 40px;
}
.comments-form-header {
  background-color: #003366;
  color: #fff;
  padding: 10px 15px;
  font-weight: bold;
  font-size: 14px;
}
.comments-form-body textarea {
  width: 100%;
  border: none;
  padding: 15px;
  box-sizing: border-box;
  font-size: 16px;
  resize: vertical;
  outline: none;
}
.comments-form-footer {
  padding: 10px 15px;
}
.comments-form-footer button {
  background-color: #003366;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 13px;
  transition: background 0.3s;
}
.comments-form-footer button:hover {
  background-color: #004a94;
}
.comment {
  border-top: 1px solid #eee;
  padding: 20px 0;
}
.comment-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}
.comment-title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
}
.comment-meta {
  font-size: 13px;
  color: #999;
}
.comment-body p {
  font-size: 17px;
  line-height: 1.5;
  margin: 10px 0;
  color: #333;
  font-family: "PT Serif", serif;
}
.comment-body img {
  max-width: 100%;
  height: auto;
  margin: 0 !important;
  display: block;
  margin-top: 15px;
  border-radius: 4px;
}
.comment-body a {
  color: #003366;
  text-decoration: underline;
}
.comment-author {
  font-weight: bold;
  text-decoration: none !important;
}
@media (max-width: 600px) {
  .comment-header {
    flex-direction: column;
  }
  .comment-meta {
    margin-top: 4px;
  }
  .comments-form-header {
    font-size: 12px;
  }
  .comments-form-footer button {
    width: 100%;
  }
}
.related-articles {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 15px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}
.related-title {
  color: #003366;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.related-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}
.related-item::before {
  content: "•";
  color: #003366;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}
.icon-s {
  background-color: #ffcc00;
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
}
.related-link {
  font-family: "PT Serif", Georgia, serif;
  color: #003366;
  text-decoration: none;
  font-size: 18px;
  line-height: 1.4;
  transition: color 0.2s;
}
.related-link:hover {
  color: #e31e24;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .related-title {
    font-size: 20px;
  }
  .related-link {
    font-size: 17px;
  }
  .nav-arrow {
    display: none;
  }
}
@media (max-width: 480px) {
  .related-item {
    padding-left: 12px;
  }
  .related-link {
    font-size: 16px;
  }
  .icon-s {
    width: 14px;
    height: 14px;
    font-size: 9px;
  }
}
.author-avatar img {
  margin: 0;
}
h2 {
  font-family: "PT Serif", Georgia, serif;
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 20px 0;
  font-weight: 400;
}
h2::first-letter {
  font-size: 85px;
  font-weight: bold;
  float: left;
  line-height: 1;
  margin-right: 12px;
  margin-top: 5px;
  color: #000;
  text-transform: uppercase;
}
h2::after {
  content: "";
  display: table;
  clear: both;
}
@keyframes afOnAutoFillStart {
  from {
  }
  to {
  }
}
input:-webkit-autofill {
  animation-name: afOnAutoFillStart;
  animation-duration: 0.001s;
}
.reg-form-wrapp {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding-bottom: 16px;
}
