@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --primary-color: #2c5aa0;
  --secondary-color: #1e4080;
  --accent-color: #e74c3c;
  --text-color: #333333;
  --light-gray: #f5f5f5;
  --border-color: #ddd;
  --white: #ffffff;
  --shadow-color: rgba(0, 0, 0, 0.1);
  --overlay-color: rgba(0, 0, 0, 0.5);
}

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

html {
  font-size: 16px;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray);
  font-size: 1rem;
}

.container {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
}

.header {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px var(--shadow-color);
}
@media (max-width: 550px) {
  .header {
    padding: 10px 0;
  }
}
.header .header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .header .header-content {
    position: relative;
  }
}
.header .logo {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header .logo h1 {
  width: 100%;
  max-width: 300px;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
}
.header .logo .logo-img {
  height: 60px;
  display: flex;
  width: auto;
}
@media (max-width: 480px) {
  .header .logo .logo-img {
    height: 35px;
  }
}
@media (max-width: 1170px) {
  .header .nav {
    display: none;
  }
}
.header .nav .nav-list {
  display: flex;
  list-style: none;
  gap: 30px;
}
@media (max-width: 1024px) {
  .header .nav .nav-list {
    gap: 20px;
  }
}
.header .nav .nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header .nav .nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}
.header .nav .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary-color);
}
.header .nav .nav-link:hover {
  color: var(--primary-color);
}
.header .header-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .header .header-actions {
    display: none;
  }
}
.header .header-actions .login-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .header-actions .login-btn:hover {
  background: var(--secondary-color);
}
.header .header-actions .language-switcher {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header .header-actions .language-switcher:hover {
  background: var(--light-gray);
}
.header .header-actions .language-switcher .language {
  font-weight: 500;
}
.header .header-actions .language-switcher i {
  font-size: 0.8rem;
  color: #666;
}
.header .mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
  padding: 5px;
}
@media (max-width: 768px) {
  .header .mobile-menu-btn {
    display: block;
  }
}
.header .mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-color);
  z-index: 1001;
}
.header .mobile-menu.active {
  display: block;
}
.header .mobile-menu .mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 100%;
  background: var(--white);
  padding: 60px 30px 30px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.header .mobile-menu .mobile-menu-content.active {
  transform: translateX(0);
}
.header .mobile-menu .mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-color);
  cursor: pointer;
}
.header .mobile-menu .mobile-nav-list {
  list-style: none;
  margin-bottom: 30px;
}
.header .mobile-menu .mobile-nav-list li {
  margin-bottom: 15px;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-link.active {
  color: var(--primary-color);
  font-weight: 600;
}
.header .mobile-menu .mobile-nav-list .mobile-nav-link:hover {
  color: var(--primary-color);
}
.header .mobile-menu .mobile-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
.header .mobile-menu .mobile-actions .mobile-login-btn {
  background: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.header .mobile-menu .mobile-actions .mobile-login-btn:hover {
  background: var(--secondary-color);
}
.header .mobile-menu .mobile-actions .mobile-language {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px;
  border: 1px solid var(--border-color);
  border-radius: 5px;
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}
.header .mobile-menu .mobile-actions .mobile-language span {
  font-weight: 500;
}

.cap {
  background: var(--primary-color);
  padding: 10px 0;
}
@media (max-width: 768px) {
  .cap {
    display: none;
  }
}
.cap-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cap-wrapper .a-plus {
  padding: 7px 18px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  background: var(--white);
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cap-wrapper .a-plus:hover {
  opacity: 0.8;
}
.cap-wrapper .cap-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .cap-wrapper .cap-actions {
    display: none;
  }
}
.cap-wrapper .cap-actions .login-btn {
  background: var(--white);
  color: var(--text-color);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cap-wrapper .cap-actions .login-btn:hover {
  opacity: 0.8;
}
.cap-wrapper .cap-actions .language-switcher {
  gap: 5px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 1rem;
  transition: all 0.3s ease;
  color: white;
}
.cap-wrapper .cap-actions .language-switcher:hover {
  opacity: 0.8;
}
.cap-wrapper .cap-actions .language-switcher .language {
  font-weight: 500;
}
.cap-wrapper .cap-actions .language-switcher i {
  font-size: 0.8rem;
  color: white;
}

.hero {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  padding: 80px 0;
}
@media (max-width: 768px) {
  .hero {
    padding: 60px 0;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 40px 0;
  }
}
.hero .hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
@media (max-width: 768px) {
  .hero .hero-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}
.hero .hero-text {
  flex: 1;
  max-width: 600px;
}
@media (max-width: 768px) {
  .hero .hero-text {
    max-width: 100%;
  }
}
.hero .hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.3;
}
@media (max-width: 768px) {
  .hero .hero-title {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .hero .hero-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.hero .hero-description {
  font-size: 1.3rem;
  margin-bottom: 35px;
  line-height: 1.6;
  opacity: 0.95;
}
@media (max-width: 768px) {
  .hero .hero-description {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .hero .hero-description {
    font-size: 1rem;
  }
}
.hero .hero-link {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 12px 30px;
  border: 2px solid var(--white);
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .hero .hero-link {
    font-size: 1rem;
    padding: 10px 25px;
  }
}
.hero .hero-link:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
}
.hero .hero-image {
  flex: 1;
  max-width: 400px;
}
@media (max-width: 768px) {
  .hero .hero-image {
    max-width: 300px;
  }
}
@media (max-width: 480px) {
  .hero .hero-image {
    max-width: 250px;
  }
}
.hero .hero-image .hero-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}
.hero .hero-image .hero-img:hover {
  transform: scale(1.05);
}

.news-section {
  padding: 60px 0;
  background: var(--white);
}
@media (max-width: 768px) {
  .news-section {
    padding: 40px 0;
  }
}
.news-section .news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .news-section .news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
}

.news-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
.news-card img {
  width: 100%;
  height: 200px;
}
@media (max-width: 480px) {
  .news-card {
    margin: 0 10px;
  }
}
.news-card::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 95px;
  background: var(--primary-color);
  transition: height 0.3s ease;
}
.news-card::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}
.news-card:hover {
  box-shadow: 0 2px 10px var(--shadow-color);
  transform: translateY(-5px);
}
.news-card:hover::before {
  height: 30px;
}
.news-card:hover::after {
  width: 130px;
}
.news-card:hover .news-title {
  color: var(--primary-color);
}
.news-card .news-content {
  padding: 25px;
}
@media (max-width: 480px) {
  .news-card .news-content {
    padding: 20px;
  }
}
.news-card .news-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--text-color);
  transition: color 0.3s ease;
}
@media (max-width: 480px) {
  .news-card .news-title {
    font-size: 1.1rem;
  }
}
.news-card .news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #666;
}
@media (max-width: 480px) {
  .news-card .news-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
}
.news-card .news-date {
  font-weight: 500;
}
.news-card .news-views {
  color: var(--primary-color);
  font-weight: 600;
}

.all-news {
  text-align: center;
}
.all-news .all-news-link {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 10px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .all-news .all-news-link {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.all-news .all-news-link:hover {
  background: var(--primary-color);
  color: var(--white);
}

.search-section {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border-color);
}
@media (max-width: 768px) {
  .search-section {
    padding: 30px 0;
  }
}
.search-section .search-content {
  text-align: center;
}
.search-section .search-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 30px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .search-section .search-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .search-section .search-title {
    font-size: 1.6rem;
  }
}
.search-section .search-box {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 480px) {
  .search-section .search-box {
    max-width: 100%;
  }
}
.search-section .search-box .search-input {
  width: 100%;
  padding: 15px 60px 15px 20px;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  font-size: 1.1rem;
  outline: none;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .search-section .search-box .search-input {
    padding: 12px 50px 12px 15px;
    font-size: 1rem;
  }
}
.search-section .search-box .search-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(44, 90, 160, 0.3);
}
.search-section .search-box .search-btn {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
@media (max-width: 480px) {
  .search-section .search-box .search-btn {
    width: 40px;
    height: 40px;
  }
}
.search-section .search-box .search-btn:hover {
  background: var(--secondary-color);
  transform: translateY(-50%) scale(1.05);
}

.resources-section {
  padding: 60px 0;
  background: var(--light-gray);
}
@media (max-width: 768px) {
  .resources-section {
    padding: 40px 0;
  }
}
.resources-section .resources-subtitle {
  font-size: 1.5rem;
  color: var(--text-color);
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .resources-section .resources-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .resources-section .resources-subtitle {
    font-size: 1.2rem;
  }
}
.resources-section .resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
@media (max-width: 768px) {
  .resources-section .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 480px) {
  .resources-section .resources-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.resource-item {
  background: var(--white);
  padding: 40px 20px;
  text-align: center;
  border: 2px solid var(--primary-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 768px) {
  .resource-item {
    padding: 30px 15px;
  }
}
@media (max-width: 480px) {
  .resource-item {
    padding: 25px 15px;
  }
}
.resource-item:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-5px);
}
.resource-item:hover .resource-icon {
  background: var(--white);
  color: var(--primary-color);
}
.resource-item .resource-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .resource-item .resource-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}
.resource-item h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .resource-item h4 {
    font-size: 1.1rem;
  }
}
.resource-item p {
  font-size: 1rem;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .resource-item p {
    font-size: 0.9rem;
  }
}

.section-title {
  font-size: 2rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.7rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--primary-color);
}

.contact-section {
  padding: 60px 0;
  background: var(--white);
}
@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
}
.contact-section .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-section .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.contact-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 25px;
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .contact-section h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
}
.contact-section .contact-details p,
.contact-section .hours-details p {
  margin-bottom: 12px;
  line-height: 1.5;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .contact-section .contact-details p,
  .contact-section .hours-details p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
}
.contact-section .contact-details strong,
.contact-section .hours-details strong {
  color: var(--text-color);
}
.contact-section .map-container .map-placeholder {
  height: 200px;
  background: linear-gradient(135deg, var(--light-gray), var(--border-color));
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 8px;
  border: 2px dashed var(--primary-color);
  color: var(--primary-color);
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .contact-section .map-container .map-placeholder {
    height: 150px;
    font-size: 1rem;
  }
}
.contact-section .map-container .map-placeholder i {
  font-size: 3rem;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .contact-section .map-container .map-placeholder i {
    font-size: 2rem;
  }
}

.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}
@media (max-width: 480px) {
  .footer {
    padding: 20px 0;
  }
}
.footer p {
  opacity: 0.9;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .footer p {
    font-size: 0.9rem;
  }
}/*# sourceMappingURL=main.css.map */