﻿body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f8f8;
  color: #333;
  padding-top: 80px; 
}


.banner {
  width: 100%;
  height: 60vh;
  overflow: hidden;
  position: relative;
  margin-top: 20px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
}

.banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, #f8f8f8, transparent);
}


h3 {
  text-align: center;
  font-size: 2.5rem;
  margin: 60px 0 30px;
  letter-spacing: 1px;
  color: #d50000;
  font-weight: 600;
  text-transform: uppercase;
}


.content {
  max-width: 900px;
  margin: 0 auto 80px;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  line-height: 1.8;
  font-size: 1.1rem;
  text-align: justify;
}

.content p {
  margin-bottom: 20px;
  color: #555;
}

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


@media (max-width: 768px) {
  .banner {
    height: 40vh;
  }

  h3 {
    font-size: 2rem;
    margin: 40px 20px 20px;
  }

  .content {
    margin: 0 20px 40px;
    padding: 30px 20px;
    font-size: 1rem;
  }
}


