@charset "UTF-8";



* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background-color: #ffffff;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
header {
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
  background: #fff;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo-main img {
  width: 124px;
  height: auto;
  display: block;
}

.sponsor-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sponsor-text {
  font-size: 14px;
  color: #000;
  font-weight: bold;
}

.sponsor-logo img {
  width: 140px;
  height: auto;
  display: block;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid transparent;
}

nav a,
nav .dropdown-toggle {
  color: #696969;
  text-decoration: none;
  font-size: 14px;
  font-weight: bold;
  padding: 10px 5px;
  display: block;
  transition: color 0.2s;
  cursor: pointer;
}

nav a:hover,
nav .dropdown-toggle:hover {
  color: #000000;
}

nav li {
  position: relative;
}

/* Dropdown Menu */
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #eee6d8;
  min-width: 150px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 100;
  list-style: none;
}

.dropdown-menu a {
  color: #414141;
  padding: 10px 15px;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background-color: #fff;
  color: #000;
}

/* Main Content Layout */
main {
  padding: 60px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
  align-items: start;
}

.page-title {
  color: var(--primary-color);
  font-size: 50px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: right;
  position: sticky;
  top: 20px;
}

.content-text {
  font-size: 16px;
  color: var(--text-muted);
}

.content-text p {
  margin-bottom: 24px;
  text-align: justify;
}

.content-text .highlight-box {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.4;
}

.content-text h3 {
  color: #000;
  font-size: 18px;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 8px;
}

.content-text a {
  color: var(--text-muted);
  text-decoration: underline;
}

.content-text a:hover {
  color: #000;
}

/* Footer */
footer {
  padding: 40px 0;
  border-top: 1px solid #e0e0e0;
  background: #fff;
}

.footer-text {
  color: #F7373A;
  font-size: 14px;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  nav ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-title {
    text-align: center;
    font-size: 40px;
    position: static;
  }
}