body {
    font-family: 'Space Mono', monospace;
    margin: 0;
    padding: 0;
    background: #1e1e2f;
    color: #eaeaea;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  header {
    text-align: center;
    margin-bottom: 1.75rem;
  }
  header img {
    width: 200px;
    height: 200px;
    border-radius: 20%;
    border: 4px solid #ff6f61;
    margin-bottom: 1.5rem;
  }
  header h1 {
    font-size: 1.75rem;
    margin: 0;
  }
  header p {
    font-size: 1rem;
    margin: 0.7rem 0;
  }
  .content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
  }
  .section {
    background: #2e2e3f;
    padding: 0.75rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  }
  .section h2 {
    margin: 0 0 0.25rem;
    font-size: 1.2rem;
    color: #ff6f61;
  }
  .section p {
    margin: 0.2rem 0;
    font-size: 0.75rem;
  }
  .section ul {
      font-size: 0.75rem;
  }
  .section a {
      color: #ffc857;
      text-decoration: none;
      font-weight: bold;
      font-size: 0.9rem;
  }
  .social-links {
    margin-top: 1.25rem;
    display: flex;
    gap: 1.5rem;
  }
  .social-links a {
    padding: 1rem 1.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    color: #1e1e2f;
    background: #ffc857; 
    border-radius: 8px;
    transition: background 0.3s, transform 0.2s;
  }
  .social-links a:hover {
    background: #e6ae3a; 
    transform: scale(1.1);
  }

  .expandable {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: bold;
    color: #eaeaea;
    background: #2e2e3f;
    padding: 0.75rem;
    border-radius: 8px;
}
.toggle-button {
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    color: #1e1e2f;
    font-weight: bold;
    background: #ffc857;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}
.toggle-button:hover {
    background: #e6ae3a;
    transform: scale(1.05);
}
