* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f9fa;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  position: relative;
  }
  
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  flex: 1 0 auto;
  padding-bottom: 80px; /* Space for footer */
  }
  
.top-section, .bottom-section {
width: 100%;
background-color: #e9ecef;
padding: 30px 20px;
text-align: center;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
}


.profile-dropdown {
    display: flex;
    align-items: center; /* Align profile dropdown with other nav items */
    position: relative;
    margin-left: 15px;
}

.profile-dropdown button {
    background-color: #620d8a;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px; /* Adjusted padding for consistency */
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.profile-menu {
    position: absolute;
    right: 0;
    top: 35px;
    background-color: white;
    min-width: 120px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    margin-right: 8px;
}


.top-section h2 {
  font-size: 2em;
  color: #4b006e;
  margin-bottom: 10px;
}

.top-section p, .bottom-section p {
  font-size: 1.1em;
  color: #4a4a4a;
  line-height: 1.6;
}


    .container {
      border: 1px solid #ddd;
      padding: 25px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.1);
      margin-top: 10px;
    }

    .header {
      display: flex;
      align-items: center;
      background: white;
      color: white;
      padding: 20px;
      font-size: 24px;
      justify-content: space-between;
      flex-wrap: wrap;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    
    .header img {
      height: 80px;
      margin-right: 20px;
    }
    
    .header-title {
      flex-grow: 1;
      text-align: center;
      min-width: 100px;
    }
    
    .nav {
      display: flex;
      gap: 15px;
    }
    
    .nav a {
      text-decoration: none;
      color: #8311b8;
      font-size: 18px;
      padding: 5px 10px;
      transition: all 0.3s;
    }

    .nav-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav a:hover {
      text-decoration: underline;
      background-color: #f3e6f8;
      border-radius: 4px;
    }
    
    .dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #ffffff; /* White background for contrast */
    min-width: 200px; /* Slightly wider for better readability */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Softer shadow for depth */
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures border-radius applies to content */
    z-index: 1000; /* Ensure it stays above other content */
    padding: 5px 0; /* Internal padding for items */
}

/* Individual dropdown item styling */
.dropdown-content a {
    color: #8311b8; /* Consistent purple color */
    padding: 12px 20px; /* Increased padding for touch targets */
    display: block;
    text-decoration: none; /* Remove underline */
    font-size: 16px; /* Slightly larger text */
    font-weight: 500; /* Medium weight for readability */
    transition: all 0.3s ease; /* Smooth transition for hover */
}

/* Hover effect for dropdown items */
.dropdown-content a:hover {
    background-color: #f3e6f8; /* Lighter purple shade for hover */
    color: #620d8a; /* Darker purple on hover for contrast */
    transform: translateX(5px); /* Subtle slide effect */
}

/* Active dropdown state */
.dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: slideDown 0.3s ease-out; /* Smooth slide-down animation */
}

/* Animation for dropdown appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure dropdown trigger aligns with other nav items */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        min-width: 150px; /* Slightly narrower on mobile */
        left: 0; /* Align to the left on small screens */
        right: 0; /* Full width if needed */
        margin: 0 auto; /* Center if full width */
    }

    .dropdown-content a {
        padding: 10px 15px; /* Reduced padding for smaller screens */
        font-size: 14px; /* Smaller text on mobile */
    }
}

    

    .logo-section {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 20px;
      margin-bottom: 15px;
    }

    .logo {
      width: 80px;
      height: auto;
    }

    .office-info h2 {
      margin: 0;
      color: #4b006e;
      text-align: center;
    }

    .confidential {
      color: #d9534f;
      margin-top: 10px;
      font-weight: bold;
      margin-bottom: 10px;
      text-align: center;
    }

    .client-table {
      width: 100%;
      border-collapse: collapse;
      margin-bottom: 20px;
    }

    .client-table td {
      border: 1px solid #ddd;
      padding: 10px;
      height: 40px;
    }

    .client-table .label {
      font-weight: bold;
      background: #f8f9fa;
      width: 200px;
    }

    .client-table input,
    .client-table textarea,
    .client-table select {
      width: 95%;
      padding: 8px;
      border: 1px solid #ddd;
      border-radius: 4px;
      font-size: 14px;
      font-family: inherit;
    }

    .client-table input[type="date"] {
      width: auto;
    }

    .submit-btn {
      margin-top: 20px;
      padding: 12px 24px;
      background: #4b006e;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-size: 16px;
      font-weight: bold;
      transition: background 0.3s;
      display: block;
      margin-left: auto;
      margin-right: auto;
    }

    .submit-btn:hover {
      background: #6a00a3;
    }

    .privacy {
      font-size: 13px;
      margin-top: 20px;
      text-align: justify;
      border-top: 1px solid #ddd;
      padding-top: 15px;
      color: #666;
      line-height: 1.5;
    }

    .concerns-section {
      margin-top: 25px;
      padding-top: 15px;
      border-top: 1px solid #ddd;
    }

    .concerns-section label {
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
      color: #4b006e;
    }

    .concerns-section textarea {
      width: 100%;
      height: 200px;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 15px;
      resize: vertical;
      font-family: inherit;
    }

    #wordCount {
      text-align: right;
      font-size: 14px;
      color: #666;
      margin-top: 5px;
    }


    .map-section {
  margin-top: 30px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-section h2 {
  font-size: 1.5em;
  color: #4b006e;
  margin-bottom: 15px;
}

.map-container {
  width: 100%;
  height: 400px; /* Adjustable height for the map */
  border-radius: 8px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}


    /* Footer Styles */
    .footer {
    background-color: #620d8a;
    color: #ffffff;
    padding: 40px 20px;
    margin-top: 50px;
    margin: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    min-width: 220px;
    margin: 20px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.footer-column p,
.footer-column li,
.footer-column a {
    color: #d1d5db;
    font-size: 14px;
    text-decoration: none;
    line-height: 1.6;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.social-icons {
    margin: 10px 0;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #7e24aa;
    border-radius: 50%;
    margin-right: 10px;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: white;
    transform: translateY(-3px);
}

.social-icons i {
    font-size: 1rem;
    color: white;
}

.social-icons a:hover i {
    color: #7e24aa;
}
    .copyright {
      text-align: center;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #4a5568;
      color: #aaa;
      font-size: 14px;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .header {
        flex-direction: column;
        text-align: center;
      }
      
      .nav {
        margin-top: 15px;
        justify-content: center;
      }
      
      .logo-section {
        flex-direction: column;
        text-align: center;
      }
      
      .footer-container {
        flex-direction: column;
      }
      
      .client-table {
        display: block;
        overflow-x: auto;
      }
    }
