.section {
  padding: 5rem 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.about-content {
  z-index: 2;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
  margin-bottom: 2rem;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.about-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.decoration-image {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  opacity: 0.2;
  z-index: 1;
}

@media (max-width: 768px) {
  .section {
    min-height: auto;
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}
