
    :root {
      --color-primary: #3a7d44;
      --color-text: #333333;
      --color-background: #fcfaf5;
      --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background-color: var(--color-background);
      color: var(--color-text);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 100vh;
      padding: 2rem;
      text-align: center;
    }

    .container {
      background-color: #ffffff;
      padding: 3rem 2.5rem;
      border-radius: 16px;
      box-shadow: var(--shadow);
      max-width: 600px;
      width: 100%;
      border-top: 5px solid var(--color-primary);
      animation: fadeIn 1.5s ease-out;
    }

    .logo {
      max-width: 120px;
      margin: 0 auto 1.5rem;
    }

    h1 {
      font-family: 'Poppins', sans-serif;
      font-size: clamp(1.8rem, 5vw, 2.5rem);
      color: var(--color-primary);
      margin-bottom: 1rem;
    }

    p {
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    
    .contact-info {
      margin-top: 2rem;
      padding-top: 1.5rem;
      border-top: 1px solid #e0e0e0;
    }
    
    .contact-info h2 {
      font-family: 'Poppins', sans-serif;
      font-size: 1.2rem;
      margin-bottom: 1rem;
      color: var(--color-text);
    }

    .contact-info a {
      display: inline-block;
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 500;
      margin: 0.5rem 1rem;
      transition: transform 0.3s ease;
    }
    
    .contact-info a:hover {
        transform: scale(1.05);
    }

    .contact-info a i {
      margin-right: 0.5rem;
    }
    
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
}