/* contact.css */

/* General Reset and Fonts */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #fddde6;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }
  
  /* Navigation Bar */
  .main-nav {
    background-color: #f78da7;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    gap: 30px;
  }
  
  .main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 600;
  }
  
  /* Contact Page Style */
  .contact-container {
    background-color: #fff0f5;
    padding: 50px 20px;
    text-align: center;
  }
  
  .contact-container h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #d6336c;
  }
  
  .social-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
  }
  
  .social-links a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .social-links img {
    width: 32px;
    height: 32px;
  }
  
