.magical-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  padding: 100px 0;
}

.magical-text {
  flex: 1 1 450px;
  background-color: #fff;
  border-radius: 50%;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
}

.magical-text .logo {
  height: 60px;
  margin-bottom: 1rem;
}

.magical-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: bold;
}

.highlight {
  color: var(--primary-color);
}

.magical-text p {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cta-button {
  background-color: #d4a357;
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #c49345;
}

.magical-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.magical-image img {
  width: 95%;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
}

.magicalDiv{
  width: 30%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .magical-section {
    flex-direction: column;
  }

  .magical-text {
    border-radius: 0;
    padding: 2rem;
  }
  
.magicalDiv{
  width: 40%;
  margin: auto;
}
}
