:root {
    --primary-color: #a94a82;
    --secondary-color: #f8f9fa;
    --dark-color: #343a40;
    --light-color: #ffffff;
  }
  
  
 
  
  .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 30px;
  }
  
  .box {
    background: var(--secondary-color);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(169, 74, 130, 0.2);
  }
  
  .box:hover {
    box-shadow: 0 2px 10px rgba(169, 74, 130, 0.3);
    transform: translateY(-3px);
  }
  
  .box h3 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 15px;
    font-size: 1.2em;
  }
  
  ul {
    list-style-type: none;
    padding: 0;
  }
  
  ul li {
    margin-bottom: 12px;
    line-height: 1.5;
  }
  
  a {
    color: var(--primary-color);
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  textarea, input, select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 0.95em;
    margin-bottom: 12px;
    transition: border-color 0.3s;
  }
  
  textarea:focus, input:focus, select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 4px rgba(169, 74, 130, 0.3);
  }
  
  button {
    background: var(--primary-color);
    color: var(--light-color);
    border: none;
    padding: 12px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    
  }
  
  button:hover {
    background: #8b3a6b;
    transform: scale(1.03);
    color: white;
  }
  
  .foote {
    background: #a94a82;
    color: var(--light-color);
    padding: 25px 20px;
    text-align: center;
    font-size: 1.30em;
  }
  
  .foote strong {
    color: white;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .grid {
      grid-template-columns: 1fr;
      padding: 0;
    }

 .foote {
     font-size: 0.99em;
 }
  }