.img-small {
  max-width: 400px;
  height: auto;
}

.swot-page {
  max-width: 1200px;
  margin: 0 auto;
}

.swot-header {
  margin-bottom: 2rem;
}

.swot-header h1 {
  margin-bottom: 0.3rem;
}

.swot-header h2 {
  margin-top: 0;
  color: #555;
  font-size: 1.3rem;
}

.swot-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 2rem 0;
}

.swot-card {
  background: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.swot-card h2 {
  margin-top: 0;
  font-size: 1.4rem;
}

.swot-card h2 span {
  font-weight: normal;
  color: #666;
}

.swot-item + .swot-item {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e5e5;
}

.strengths {
  border-top: 6px solid #2e7d32;
}

.weaknesses {
  border-top: 6px solid #f9a825;
}

.opportunities {
  border-top: 6px solid #1565c0;
}

.threats {
  border-top: 6px solid #c62828;
}

.swot-summary {
  margin-top: 2rem;
  padding: 24px;
  background: #f7f7f7;
  border-left: 6px solid #444;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .swot-grid {
    grid-template-columns: 1fr;
  }
}


.crea-footer {
  margin-top: 3rem;
  padding: 2rem 0;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 2rem;
}

.footer-col h4 {
  margin-bottom: 0.8rem;
  color: #006633;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: #006633;
}

.footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer-legal a {
  margin-left: 10px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}

.error-page {
  min-height: 65vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
}

.error-card {
  width: 100%;
  max-width: 760px;
  background: #ffffff;
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  border-top: 6px solid #006633;
}

.error-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.error-code {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
  color: #006633;
  margin-bottom: 0.8rem;
}

.error-title {
  font-size: 2rem;
  margin: 0 0 1rem 0;
  color: #1f2a1f;
}

.error-text {
  font-size: 1.1rem;
  color: #4f5b4f;
  margin-bottom: 1.2rem;
}

.error-message {
  max-width: 620px;
  margin: 0 auto 2rem auto;
  color: #5f6b5f;
}

.error-message p:last-child {
  margin-bottom: 0;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-actions .button {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  background: #006633;
  border: 1px solid #006633;
  color: #ffffff;
  transition: all 0.2s ease;
}

.error-actions .button:hover,
.error-actions .button:focus {
  background: #004d26;
  border-color: #004d26;
  color: #ffffff;
  text-decoration: none;
}

.error-actions .button-outline {
  background: transparent;
  color: #006633;
}

.error-actions .button-outline:hover,
.error-actions .button-outline:focus {
  background: #f1f7f3;
  color: #004d26;
}

@media (max-width: 768px) {
  .error-card {
    padding: 2rem 1.2rem;
  }

  .error-code {
    font-size: 3.5rem;
  }

  .error-title {
    font-size: 1.6rem;
  }
}


.documents-page {
  max-width: 1100px;
  margin: 0 auto;
}

.documents-intro {
  margin-top: 1rem;
}

.documents-group {
  margin-top: 2.5rem;
}

.documents-group h2 {
  margin-bottom: 0.4rem;
  color: var(--crea-primary);
}

.documents-group-description {
  color: var(--crea-muted);
  margin-bottom: 1rem;
}

.documents-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.document-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.2rem;
  background: #fff;
  border: 1px solid var(--crea-border);
  border-radius: 12px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.document-card-main {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  min-width: 0;
  flex: 1;
}

.document-icon {
  font-size: 1.8rem;
  line-height: 1;
  margin-top: 0.2rem;
}

.document-content {
  min-width: 0;
}

.document-heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.35rem;
}

.document-heading h3 {
  margin: 0;
}

.document-description {
  margin-bottom: 0.5rem;
}

.document-meta {
  color: var(--crea-muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.document-badge {
  display: inline-block;
  padding: 0.18rem 0.55rem;
  border-radius: 999px;
  background: var(--crea-bg);
  border: 1px solid var(--crea-border);
  color: var(--crea-primary);
  font-size: 0.85rem;
  font-weight: 600;
}

.document-card-actions {
  flex-shrink: 0;
}

.document-card-actions .button {
  white-space: nowrap;
}

.button-outline {
  background: transparent;
  color: var(--crea-primary);
  border: 1px solid var(--crea-primary);
}

.button-outline:hover,
.button-outline:focus {
  background: var(--crea-bg);
  color: var(--crea-secondary);
  border-color: var(--crea-secondary);
}

@media (max-width: 768px) {
  .document-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .document-card-main {
    width: 100%;
  }

  .document-card-actions {
    width: 100%;
  }

  .document-card-actions .button {
    display: block;
    width: 100%;
    text-align: center;
  }
}


.news-page,
.news-item-page,
.home-page {
  max-width: 1100px;
  margin: 0 auto;
}

.news-intro,
.home-intro {
  margin-top: 1rem;
}

.home-news {
  margin-top: 3rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.section-heading h2 {
  margin: 0;
  color: var(--crea-primary);
}

.news-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 1rem;
}

.news-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--crea-border);
  border-radius: 12px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.news-card-image {
  flex: 0 0 280px;
}

.news-card-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.news-card-content {
  flex: 1;
  min-width: 0;
}

.news-meta {
  margin: 0 0 0.4rem 0;
  font-size: 0.95rem;
  color: var(--crea-muted);
}

.news-title {
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.news-title a {
  color: var(--crea-primary);
  text-decoration: none;
}

.news-title a:hover,
.news-title a:focus {
  text-decoration: underline;
}

.news-description {
  margin-bottom: 1rem;
}

.news-actions {
  margin-bottom: 0;
}

.news-actions .button {
  display: inline-block;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  text-decoration: none;
}

.news-item-image {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.news-item-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

.news-item-summary {
  font-size: 1.1rem;
  color: var(--crea-muted);
  margin-top: 1rem;
}

.news-item-content {
  margin-top: 2rem;
}

.news-backlink {
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
  }

  .news-card-image {
    flex: none;
    width: 100%;
  }
}


.crea-hero {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.crea-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 51, 25, 0.78) 0%, rgba(0, 51, 25, 0.58) 42%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}


#body-wrapper .container.grid-lg {
  margin-top: -2rem;
  padding-top: 0;
}

header,
#header,
.navbar,
.navigation,
.main-nav {
  position: relative;
  z-index: 1000;
}

.crea-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.crea-hero-content {
  max-width: 720px;
  padding: 4rem 0 1rem 0;
}

.crea-hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 999px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: rgba(255,255,255,0.08);
}

.crea-hero-title {
  margin: 0 0 1rem 0;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  color: #fff;
}

.crea-hero-subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  max-width: 60ch;
}

.crea-hero-actions {
  margin-top: 1.75rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.crea-hero-actions .btn {
  display: inline-block;
  padding: 0.85rem 1.2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.crea-hero-actions .btn-primary {
  background: #ffffff;
  color: #006633;
  border: 1px solid #ffffff;
}

.crea-hero-actions .btn-primary:hover,
.crea-hero-actions .btn-primary:focus {
  background: #f3f7f4;
  color: #004d26;
}

.crea-hero-actions .btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.75);
}

.crea-hero-actions .btn-secondary:hover,
.crea-hero-actions .btn-secondary:focus {
  background: rgba(255,255,255,0.12);
  color: #ffffff;
}

@media (max-width: 768px) {
  .crea-hero {
    min-height: 260px;
  }

  .crea-hero-content {
    padding: 1.5rem 0 0 0;
  }

  .crea-hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 51, 25, 0.78) 0%, rgba(0, 51, 25, 0.58) 50%, rgba(0, 0, 0, 0.28) 100%);
  }
}

.home-page {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 0;
}

.home-header {
  margin-top: 0;
  padding-top: 0rem;
}

.home-header h1 {
  margin-top: 0;
  margin-bottom: 0rem;
}

.home-header .lead {
  margin-top: 0;
}

.home-intro {
  margin-top: 0rem;
}

.home-news {
  margin-top: 2.5rem;
}

.contacts-page {
  max-width: 1000px;
  margin: 0 auto;
}

.contacts-header {
  margin-bottom: 2rem;
}

.contacts-header h1 {
  margin-bottom: 0.5rem;
}

.contacts-intro {
  margin-top: 1rem;
}

.contact-section {
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border-left: 5px solid var(--crea-primary);
  background: #fff;
  border-radius: 0 10px 10px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-section h2 {
  margin-top: 0;
  color: var(--crea-primary);
}

.contact-label {
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.contact-email {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.contact-email a {
  font-weight: 600;
  word-break: break-word;
}

.facility-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 1.5rem;
}

.facility-box {
  padding: 1rem 1.1rem;
  background: var(--crea-bg);
  border: 1px solid var(--crea-border);
  border-radius: 10px;
}

.facility-box h3 {
  margin-top: 0;
  color: var(--crea-primary);
}

.facility-box ul {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .facility-list {
    grid-template-columns: 1fr;
  }

  .contact-section {
    padding: 1rem 1rem 1rem 1.1rem;
  }
}
