body {
  background: linear-gradient(135deg, #e6f4ea 0%, #b6e2c6 100%); 
  color: #1b5e20;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
}


  .main-nav {
	  height: 4rem;
    background-color: #006400; /* dark green */
    font-family: Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  .main-nav nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 10px 10px;
    gap: 4px;
  }

  .main-nav a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    transition: background-color 0.2s ease-in-out;
    border-radius: 4px;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background-color: darkseagreen;
	color: #FFFF00;
  }

  .main-nav .active {
    background-color: mediumseagreen;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.35);
  }

  @media (max-width: 600px) {
    .main-nav nav {
      flex-direction: column;
      align-items: stretch;
    }

    .main-nav a {
      flex: 1 1 auto;
      text-align: center;
    }
  }



    .site-header {
        background: #fff;
        padding: 18px 20px 0 20px;
        display: flex;
        align-items: flex-start;
        gap: 20px;
        box-shadow: 0 2px 8px rgba(44, 62, 80, 0.04);
    }
    .header-logo {
        flex-shrink: 0;
    }
    .header-logo img {
        height: 100%;
        width: 300px;
        display: block;
    }
    .header-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 100px;
    }
    .header-user-image {
        width: 100%;
        max-width: 300px;
        height: 100px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid #e0e0e0;
        background: #fafafa;
        box-shadow: 0 1px 4px rgba(44,62,80,0.07);
    }
    .header-user-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
   .header-title {
      margin-top: 1px;
      margin-bottom: 11px;
      font-size: 2.2rem;
      color: mediumseagreen;
      letter-spacing: 2px;
      font-family: 'Arial Black', Arial, sans-serif;
      text-shadow:
        1px 1px 0 #222,
        2px 2px 0 #222,
        3px 3px 0 #222,
        0px 4px 8px rgba(0, 0, 0, 0.2);
      transition: text-shadow 0.3s ease-in-out;
      -webkit-text-stroke: 1px black;
      text-stroke: 1px black;
    }
    .header-title:hover {
      text-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
		-webkit-text-stroke: 2px black;
      text-stroke: 2px black;
    }

 .hero {
      background: linear-gradient(180deg,  #e8f5e9 1%, #43a047 50%);
      color: #fff;
      padding: 60px 20px 40px 20px;
      text-align: center;
    }
    .hero h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .hero p {
      font-size: 1.3em;
      margin-bottom: 30px;
    }
    .packages {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin: 40px 0;
    }
    .package {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 16px rgba(56, 142, 60, 0.10);
      padding: 32px 28px;
      width: 320px;
      text-align: center;
      border: 2px solid #c8e6c9;
      transition: transform 0.2s;
    }
    .package:hover {
      transform: translateY(-8px) scale(1.03);
      border-color: #43a047;
    }
    .package h2 {
      color: #388e3c;
      font-size: 1.5em;
      margin-bottom: 10px;
    }
    .price {
      font-size: 2.2em;
      color: #1b5e20;
      margin: 18px 0 10px 0;
      font-weight: bold;
    }
    .per {
      font-size: 1em;
      color: #388e3c;
      margin-bottom: 18px;
    }
    .features {
      text-align: left;
      margin: 18px 0 24px 0;
      color: #2e7d32;
      font-size: 1.05em;
    }
    .cta-btn {
      background: #43a047;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 12px 32px;
      font-size: 1.1em;
      font-weight: 600;
      cursor: pointer;
      transition: background 0.2s;
      text-decoration: none;
      display: inline-block;
    }
    .cta-btn:hover {
      background: #2e7d32;
    }
/*//register*/

        .form-container { 
            max-width: 800px; 
            margin: 20px auto; 
            background: #fff; 
            padding: 40px; 
            border-radius: 12px; 
            box-shadow: 0 4px 16px rgba(56, 142, 60, 0.1);
        }
        .form-grid { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 20px; 
            margin-bottom: 20px;
        }
        .form-group { 
            display: flex; 
            flex-direction: column;
        }
        .form-group.full-width { 
            grid-column: 1 / -1;
        }
        label { 
            display: block; 
            margin-bottom: 5px; 
            font-weight: bold; 
            color: #2e7d32;
        }
        input[type="text"], input[type="email"], input[type="password"], select, textarea { 
            width: 100%; 
            padding: 12px; 
            border: 2px solid #c8e6c9; 
            border-radius: 6px; 
            font-size: 1em; 
            box-sizing: border-box;
        }
        input:focus, select:focus, textarea:focus { 
            border-color: #43a047; 
            outline: none;
        }
        .error { 
            background: #ffebee; 
            color: #c62828; 
            padding: 12px; 
            border-radius: 6px; 
            margin-bottom: 20px; 
            border-left: 4px solid #c62828;
        }
        .success { 
            background: #e8f5e9; 
            color: #2e7d32; 
            padding: 12px; 
            border-radius: 6px; 
            margin-bottom: 20px; 
            border-left: 4px solid #43a047;
        }
        .logo-message {
            background: #fff3cd;
            color: #856404;
            padding: 8px;
            border-radius: 4px;
            margin-top: 5px;
            font-size: 0.9em;
        }
        .logo-message.success {
            background: #d4edda;
            color: #155724;
        }
        #password-requirements { 
            grid-column: 1 / -1; 
            background: #f8f9fa;
            padding: 15px;
            border-radius: 6px;
            margin-bottom: 10px;
        }
        #password-requirements ul { 
            list-style: none; 
            padding: 0; 
            margin: 10px 0;
        }
        #password-requirements li { 
            margin-bottom: 5px;
            padding: 2px 0;
        }
      
        @media (max-width: 768px) {
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-container {
                padding: 20px;
                margin: 10px;
            }
        }
  






	 @media (max-width: 480px) {
        .site-title { 
            font-size: 1.3rem; 
        }
        .header-user-image {
            height: 150px;
        }
    }

  @media (max-width: 768px) {
        .site-header {
            flex-direction: column;
            align-items: center;
            gap: 15px;
            padding: 15px;
        }
        .header-content {
            width: 100%;
        }
        .client-info {
            width: 100%;
            min-width: auto;
        }
        .site-title { 
            font-size: 1.5rem; 
        }
        .header-logo img {
            height: 150px;
        }
        .header-user-image {
            height: 80px;
        }
    }
   

    @media (max-width: 900px) {
      .packages { flex-direction: column; align-items: center; }
      .package { width: 90%; }
    }
    .footer {
      background: #2e7d32;
      color: #fff;
      text-align: center;
      padding: 18px 0;
      margin-top: 40px;
      font-size: 1em;
    }
 
    .client-info {
        flex-shrink: 0;
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        border: 1px solid #e0e0e0;
        min-width: 250px;
        font-size: 0.9rem;
        line-height: 1.4;
    }
    .client-info .name {
        font-weight: 700;
        font-size: 1.1rem;
        color: #2e7d32;
        margin-bottom: 8px;
    }
    .client-info > div {
        margin-bottom: 6px;
    }
    .client-info > div:last-child {
        margin-bottom: 0;
    }
  