.advocacy-main {
  width: 100%;
  background-color: #fff;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 150px;
  box-sizing: border-box;
  font-family: Inter, sans-serif;
}

.advocacy-content {
  display: flex;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

.advocacy-left {
  flex: 1;
  max-width: 750px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpAdvocacy 0.8s ease-out forwards;
}

.advocacy-right {
  flex: 0 0 300px;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRightAdvocacy 1s 0.2s ease-out forwards;
}

.advocacy-title {
  font-size: 64px;
  font-weight: 600;
  color: #1e1e1e;
  margin: 0 0 40px 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
  cursor: pointer;
}

.advocacy-title:hover {
  color: #4a90e2;
}

.advocacy-text {
  font-size: 18px;
  line-height: 1.6;
  color: #4e4e4e;
  margin: 0;
  text-align: left;
}

.advocacy-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.advocacy-image:hover {
  transform: scale(1.02);
}

@keyframes fadeInUpAdvocacy {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRightAdvocacy {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
  .advocacy-main {
    padding: 70px 100px;
  }

  .advocacy-content {
    gap: 60px;
  }

  .advocacy-right {
    flex: 0 0 250px;
  }

  .advocacy-title {
    font-size: 56px;
  }

  .advocacy-text {
    font-size: 17px;
  }

  .advocacy-image {
    height: 350px;
  }
}

@media screen and (max-width: 768px) {
  .advocacy-main {
    padding: 60px 40px;
    min-height: calc(100vh - 180px);
  }

  .advocacy-content {
    flex-direction: column;
    gap: 40px;
  }

  .advocacy-right {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .advocacy-title {
    font-size: 48px;
    margin-bottom: 32px;
  }

  .advocacy-text {
    font-size: 16px;
  }

  .advocacy-image {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .advocacy-main {
    padding: 50px 20px;
  }

  .advocacy-content {
    gap: 30px;
  }

  .advocacy-title {
    font-size: 36px;
    margin-bottom: 24px;
  }

  .advocacy-text {
    font-size: 15px;
  }

  .advocacy-image {
    height: 250px;
  }
}
