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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: #ffffff;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

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

.header {
  text-align: center;
  margin-bottom: 60px;
}

.logo {
  max-width: 300px;
  height: auto;
  margin-bottom: 30px;
}

.company-info {
  margin-bottom: 30px;
}

.company-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.address {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

.registration-info {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.8;
}

.nav-link {
  text-align: center;
  margin-top: 40px;
}

.nav-link a {
  color: #2d7a3e;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.nav-link a:hover {
  border-bottom-color: #2d7a3e;
}

.news-section {
  margin-top: 50px;
}

.news-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2d7a3e;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #2d7a3e;
}

.news-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background-color: #fafafa;
  border-radius: 8px;
  margin-bottom: 15px;
  transition: box-shadow 0.3s ease;
}

.news-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.news-date {
  flex-shrink: 0;
  font-weight: 600;
  color: #2d7a3e;
  min-width: 100px;
}

.news-content {
  flex-grow: 1;
  color: #444;
}

.news-link {
  flex-shrink: 0;
  align-self: center;
}

.news-link a {
  display: inline-block;
  padding: 8px 20px;
  background-color: #2d7a3e;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.news-link a:hover {
  background-color: #236030;
}

@media (max-width: 768px) {
  .company-name {
    font-size: 1.5rem;
  }

  .news-item {
    flex-direction: column;
    gap: 10px;
  }

  .news-date {
    min-width: auto;
  }
}
