.oprema-section {
  padding: 79px 0 6rem;
  background: #ffffff;
}

/* Header */
.oprema-header {
  text-align: center;
  margin-bottom: 4rem;
}

.oprema-title {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
}

.oprema-subtitle {
  margin: 0;
  font-size: 1.125rem;
  color: #6b7280;
}

/* Content */
.oprema-content {
  margin-bottom: 0;
}

.about-section {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #05d4e0;
  border-radius: 0.75rem;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15), 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
}

.about-section h2 {
  margin: 0 0 1.5rem 0;
  padding-bottom: 1rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #111827;
  border-bottom: 2px solid #05d4e0;
}

.about-content {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #374151;
}

.about-content p {
  margin: 0 0 1rem 0;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.oprema-button {
  margin-top: 1rem;
  width: 100%;
  max-width: 400px;
  padding: 0.9rem 1.5rem;
  background: #aa912b;
  color: #ffffff;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  text-decoration: none;
}

.oprema-button:hover {
  background: #8f7923;
  transform: translateY(-2px);
}

.oprema-button:active {
  transform: translateY(0);
}

.oprema-button-container {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.oprema-arrow {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.oprema-button:hover .oprema-arrow {
  transform: translateX(3px);
}


