
    

    div> a {
        text-decoration: none;
        color: #ffffff;
        font-size: 1.2rem;
    }

    .hero {
      display: flex;
      flex-direction: row-reverse;
      align-items: center;
      justify-content: space-around;
      padding: 3rem 4rem;
      min-height: 80vh;
      position: relative;
      z-index: 1;
    }
    .hero-text {
      max-width: 55%;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .hero-text h1 {
      font-size: 3.4rem;
      font-family: 'Playfair Display', serif;
      background: linear-gradient(to right, #00f0ff, #ff00c8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-text h2 {
      font-size: 2rem;
      margin-top: 1rem;
      font-weight: 500;
      color: #e0e0e0;
    }
    .hero-text p {
      margin: 1.5rem 0;
      max-width: 90%;
      line-height: 1.6;
      color: #cccccc;
    }
    .hero-buttons a {
      margin-right: 1rem;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
      border: 2px solid #ffffff;
      background: transparent;
      color: #ffffff;
      cursor: pointer;
      transition: all 0.3s ease;
    }
    .hero-buttons a:hover {
      background: #ffffff;
      color: #000;
    }
    .hero-image img {
      width: 450px;
      height: 450px;
      border-radius: 50%;
      object-fit: cover;
      object-position: top;
      border: 2px solid #0f0e0e;
    }
    .socials {
      margin-top: 2.5rem;
    }
    .socials a {
      margin-right: 3rem;
      text-decoration: none;
      color: #ffffff;
      font-size: 2rem;
    }
