/* === Base Reset === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Inter', sans-serif;
    background-color: #f9f9f9;
    color: #111;
    line-height: 1.6;
    display: flex;
    justify-content: center;
    padding: 2rem;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  main {
    width: 100%;
    max-width: auto;
  }
  
  /* === Top Section === */
  .top-section {
    min-height: 600px;
    background-color: white;
    padding: 3rem 2rem;
    border-radius: 1rem;
    position: relative;
    overflow: visible;
  }
  
  .logo-primary {
    max-width: 200px;
    margin-bottom: 2rem;
  }
  
  /* Content */
  .content-wrapper {
    margin-bottom: 2rem;
  }
  
  .intro-text {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .cta-heading {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.5rem;
  }
  
  .cta-link {
    color: #0057ff;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  
  .cta-link:hover {
    border-color: #0057ff;
  }
  
  .email-prompt {
    margin-top: 2rem;
  }
  
  .email-link {
    color: #0057ff;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
    word-break: break-word;
  }

  .email-link:hover {
    border-color: #0057ff;
  }
  /* Decorative Elements */
  .decorative-shape-stack {
    position:relative ;
    bottom: -100px;
    left: 65%;
    width: 30%;
    /* opacity: 0.1; */
    z-index: -1;
  }
  
  /* .triangle {
    top: 0;
    right: 0;
    width: 100px;
  }
  
  .rectangle {
    bottom: 0;
    left: 0;
    width: 80px;
  }
  
  .polygon {
    bottom: 10%;
    right: 10%;
    width: 60px;
  } */
  
  /* === Footer === */
  footer {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 2rem;
    border-radius: 1rem;
    margin-top: 3rem;
    z-index: 0;
  }
  
  .social-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .social-link {
    font-weight: 500;
    color: #ccc;
    transition: color 0.3s;
  }
  
  .social-link:hover {
    color: white    ;
  }
  
  .footer-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1.5rem 0;
  }
  
  /* Bottom Footer */
  .footer-bottom {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 2fr 1fr;
    /* flex-direction: column; */
    gap: 1rem;
    font-size: 0.9rem;
  }
  
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
  }
  
  .footer-link {
    color: #bbb;
    transition: color 0.3s;
  }
  
  .footer-link:hover {
    color: white;
  }
  
  .freelance-tag {
    /* margin-top: 1rem; */
    text-align: right;
  }
  
  .freelance-text {
    background-color: #222;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 0.05em;
  }