body {
    font-family: 'Arial', sans-serif;
    background: linear-gradient(135deg, #fbc2eb, #a6c1ee);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .header {
    text-align: center;
    background: #4a4e69;
    color: white;
    padding: 20px 0;
  }
  
  .header h1 {
    font-size: 2.5rem;
    animation: fadeIn 2s ease-in;
  }
  
  .nav-links {
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
  }
  
  .nav-links li {
    display: inline;
    margin: 0 15px;
  }
  
  .nav-links a {
    text-decoration: none;
    color: #ecf0f1;
    font-weight: bold;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #a6c1ee;
  }
  
  .contact-section {
    max-width: 700px;
    margin: 50px auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: slideIn 1.5s ease-out;
  }
  
  .contact-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    color: #4a4e69;
  }
  
  .contact-section p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
  }
  
  .form-group {
    margin-bottom: 20px;
    animation: fadeInUp 1.2s ease;
  }
  
  .form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 8px;
    color: #4a4e69;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.1);
  }
  
  input:focus, textarea:focus {
    border-color: #a6c1ee;
    background-color: #f0f8ff;
    outline: none;
  }
  
  .submit-button {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    background: #6c5b7b;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
    animation: pulse 2s infinite;
  }
  
  .submit-button:hover {
    background: #355c7d;
    transform: scale(1.05);
  }
  
  .social-links {
    text-align: center;
    margin-top: 40px;
    animation: bounceIn 2s ease;
  }
  
  .social-links h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .button {
    text-decoration: none;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    background: #6c5b7b;
    transition: transform 0.3s, background 0.3s;
  }
  
  .button:hover {
    background: #355c7d;
    transform: translateY(-5px);
  }
  
  footer {
    text-align: center;
    background: #4a4e69;
    color: white;
    padding: 15px 0;
    animation: zoomIn 2s;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes slideIn {
    from { opacity: 0; transform: translateX(-100%); }
    to { opacity: 1; transform: translateX(0); }
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes bounceIn {
    0% { transform: scale(0.9); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
  }
  
  @keyframes zoomIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
  