/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #1e1e2f, #2a2a40);
    color: #fff;
    line-height: 1.6;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10%;
    background: rgba(0, 0, 0, 0.7);
    border-bottom: 2px solid #00ffcc;
  }
  
  header .logo h1 {
    font-size: 2rem;
    color: #00ffcc;
  }
  
  header .logo p {
    font-size: 0.9rem;
    color: #aaa;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #00ffcc;
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    text-align: center;
  }
  
  .globe-container {
    position: relative;
    width: 200px;
    height: 200px;
    margin-bottom: 30px;
  }
  
  .globe {
    width: 100%;
    height: 100%;
    background: url('globe.png') no-repeat center center;
    background-size: cover;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    animation: rotateGlobe 10s linear infinite, heartbeat 2s ease-in-out infinite;
  }
  
  @keyframes rotateGlobe {
    from {
      transform: rotate(0deg);
    }
    to {
      transform: rotate(360deg);
    }
  }
  
  @keyframes heartbeat {
    0% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    }
    50% {
      transform: scale(1.1);
      box-shadow: 0 0 40px rgba(0, 255, 204, 0.8);
    }
    100% {
      transform: scale(1);
      box-shadow: 0 0 20px rgba(0, 255, 204, 0.5);
    }
  }
  
  .intro h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #00ffcc;
  }
  
  .intro p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #ddd;
  }
  
  .cta-button {
    padding: 10px 20px;
    background: #00ffcc;
    color: #1e1e2f;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background: #00ccaa;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
    border-top: 2px solid #00ffcc;
    position: fixed;
    bottom: 0;
    width: 100%;
  }