:root {
    --primary-color: #3d59af;
    --secondary-color: #8ad0ff;
    --accent-color: #4CAF50;
    --background-color: #d7ebff;
    --text-color: #333333;
    --light-color: #FFFFFF;

    --shadow-color: rgba(0, 0, 0, 0.1);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.6;
  }

  .btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-light) 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: bold;
    margin-top: 1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 0 rgba(0, 0, 0, 0.3);
    position: relative;
    top: 0;
}

.btn:hover {
    top: 2px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.3);
}

.btn:active {
    box-shadow: 0px 9px 5px rgba(24, 24, 248, 0.382);
}
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    text-align: center;
    padding: 60px 20px;
    border-radius: 0 0 50px 50px;
    margin-bottom: 40px;
    box-shadow: 0 8px 30px var(--shadow-color);
  }
  
  .header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    animation: fadeIn 1s ease;
  }
  
  .header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeIn 1.2s ease;
  }
  
  section {
    margin-bottom: 60px;
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 20px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
    animation: slideUp 0.8s ease;
  }
  
  section:hover {
    transform: translateY(-5px);
  }
  
  h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  h2::before {
    content: '';
    display: block;
    width: 50px;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    border-radius: 5px;
  }
  
  p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
  }
  
  .icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: middle;
    fill: var(--primary-color);
  }
  
  .testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    grid-gap: 30px;
    margin-top: 30px;
  }
  
  .testimonial-card {
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 3px 10px var(--shadow-color);
    transition: all 0.3s ease;
    position: relative;
  }
  
  .testimonial-card:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px var(--shadow-color);
  }
  
  .testimonial-card::before {
    content: '"';
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 10px;
    color: var(--secondary-color);
    opacity: 0.2;
  }
  
  .rating {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .contact-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 20px;
  }
  
  input, textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  input:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 8px rgba(92, 107, 192, 0.2);
  }
  
  textarea {
    height: 150px;
    resize: vertical;
  }
  
  button {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--shadow-color);
  }
  
  button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--shadow-color);
  }
  
  /* Decorative elements */
  .shape {
    position: absolute;
    z-index: -1;
    opacity: 0.5;
  }
  
  .shape-1 {
    top: 100px;
    right: 5%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color), transparent 60%);
    animation: float 15s infinite alternate ease-in-out;
  }
  
  .shape-2 {
    bottom: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--secondary-color), transparent 60%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 12s infinite alternate-reverse ease-in-out;
  }
  
  /* Animations */
  @keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(10deg); }
    100% { transform: translate(-20px, 10px) rotate(-10deg); }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .section-icon {
    font-size: 2rem;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 20px;
    background-color: rgba(92, 107, 192, 0.1);
    color: var(--primary-color);
    margin: 0 auto 30px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .header {
      padding: 40px 20px;
      border-radius: 0 0 30px 30px;
    }
    
    .header h1 {
      font-size: 2rem;
    }
    
    section {
      padding: 20px;
    }
    
    h2 {
      font-size: 1.6rem;
    }
    
    .testimonials {
      grid-template-columns: 1fr;
    }
    
    .shape-1, .shape-2 {
      display: none;
    }
  }