      * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      }
      body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      line-height: 1.6;
      color: #2c2c2c;
      background-color: #f8f9fa;
      }
      .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      }
      header {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 20px 0;
      box-shadow: 0 2px 10px rgba(159, 154, 191, 0.15);
      }
      .header-content {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 70px;
      gap: 30px;
      }
      .logo-container {
      flex-shrink: 0;
      z-index: 10;
      position: relative;
      }
      .logo {
      height: 45px;
      width: auto;
      display: block;
      }
      nav {
      flex-grow: 1;
      display: flex;
      justify-content: flex-end;
      z-index: 5;
      }
      .nav-list {
      display: flex;
      list-style: none;
      gap: clamp(15px, 3vw, 35px);
      align-items: center;
      flex-wrap: wrap;
      }
      .nav-list a {
      text-decoration: none;
      color: #ffffff;
      font-weight: 500;
      font-size: clamp(14px, 2.5vw, 16px);
      padding: 10px 15px;
      border-radius: 6px;
      transition: background-color 0.2s ease;
      white-space: nowrap;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      min-height: 44px;
      display: flex;
      align-items: center;
      }
      .nav-list a:hover, .nav-list a:focus {
      background-color: rgba(255, 255, 255, 0.15);
      outline: 2px solid rgba(255, 255, 255, 0.5);
      outline-offset: 2px;
      }
      footer {
      background: linear-gradient(135deg, #2c2c2c 0%, #4a4a4a 100%);
      color: #ffffff;
      padding: 50px 0 30px;
      margin-top: 80px;
      }
      .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      }
      .footer-section h3 {
      color: #C0BBD7;
      margin-bottom: 20px;
      font-size: 18px;
      font-weight: 600;
      }
      .footer-section p, .footer-section a {
      color: #e0e0e0;
      text-decoration: none;
      margin-bottom: 10px;
      display: block;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .footer-section a:hover, .footer-section a:focus {
      color: #C0BBD7;
      outline: 2px solid #C0BBD7;
      outline-offset: 2px;
      padding: 5px;
      border-radius: 4px;
      }
      .footer-logo {
      height: 40px;
      width: auto;
      margin-bottom: 15px;
      }
      .footer-bottom {
      border-top: 1px solid #555;
      padding-top: 30px;
      text-align: center;
      color: #b0b0b0;
      font-size: 14px;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
      }
      .cookie-popup {
      position: fixed;
      top: 20px;
      right: 20px;
      background: #ffffff;
      border: 2px solid #9F9ABF;
      border-radius: 12px;
      padding: 25px;
      max-width: 400px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      display: none;
      }
      .cookie-popup.show {
      display: block;
      }
      .cookie-popup h4 {
      color: #9F9ABF;
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: 600;
      }
      .cookie-popup p {
      color: #2c2c2c;
      margin-bottom: 20px;
      font-size: 14px;
      line-height: 1.5;
      }
      .cookie-buttons {
      display: flex;
      gap: 12px;
      flex-direction: column;
      }
      .cookie-btn {
      padding: 12px 20px;
      border: none;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: background-color 0.2s ease;
      min-height: 44px;
      text-decoration: none;
      text-align: center;
      display: inline-block;
      }
      .cookie-accept {
      background-color: #9F9ABF;
      color: white;
      }
      .cookie-accept:hover, .cookie-accept:focus {
      background-color: #8A84A8;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-reject {
      background-color: #e9ecef;
      color: #2c2c2c;
      border: 1px solid #ced4da;
      }
      .cookie-reject:hover, .cookie-reject:focus {
      background-color: #dee2e6;
      outline: 2px solid #2c2c2c;
      outline-offset: 2px;
      }
      .cookie-learn {
      background: none;
      color: #9F9ABF;
      text-decoration: underline;
      padding: 8px;
      font-size: 13px;
      }
      .cookie-learn:hover, .cookie-learn:focus {
      color: #8A84A8;
      outline: 2px solid #8A84A8;
      outline-offset: 2px;
      text-decoration: none;
      }
      @media (max-width: 768px) {
      .header-content {
      flex-direction: column;
      gap: 20px;
      text-align: center;
      }
      nav {
      justify-content: center;
      }
      .nav-list {
      justify-content: center;
      gap: 15px;
      }
      .footer-content {
      grid-template-columns: 1fr;
      text-align: center;
      }
      .cookie-popup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      right: auto;
      width: 85%;
      max-width: none;
      padding: 30px;
      }
      .cookie-popup h4 {
      font-size: 20px;
      }
      .cookie-popup p {
      font-size: 18px;
      line-height: 1.6;
      }
      .cookie-btn {
      padding: 15px 25px;
      font-size: 20px;
      min-height: 50px;
      }
      .cookie-buttons {
      gap: 15px;
      }
      .cookie-learn {
      font-size: 16px;
      padding: 12px;
      }
      }
      @media (max-width: 480px) {
      .container {
      padding: 0 15px;
      }
      .nav-list {
      flex-direction: column;
      gap: 10px;
      }
      .nav-list a {
      padding: 12px 20px;
      width: 100%;
      text-align: center;
      }
      }
      .contact-hero-section {
      background: linear-gradient(135deg, #9F9ABF 0%, #C0BBD7 100%);
      padding: 80px 20px;
      text-align: center;
      position: relative;
      overflow: hidden;
      }
      .contact-hero-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 400px;
      height: 400px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      z-index: 1;
      }
      .contact-hero-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      }
      .contact-hero-title {
      font-size: 3.2rem;
      color: #ffffff;
      margin-bottom: 20px;
      font-weight: 700;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      }
      .contact-hero-subtitle {
      font-size: 1.3rem;
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.6;
      }
      .contact-main-section {
      padding: 100px 20px;
      background: #f8f9fa;
      position: relative;
      }
      .contact-main-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
      }
      .contact-info-panel {
      background: #ffffff;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(159, 154, 191, 0.15);
      position: relative;
      background-image: url('./content/MKUaoxsJw.jpg');
      background-size: cover;
      background-position: center;
      }
      .contact-info-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      z-index: 1;
      }
      .contact-info-content {
      position: relative;
      z-index: 2;
      }
      .contact-section-title {
      font-size: 2.4rem;
      color: #9F9ABF;
      margin-bottom: 30px;
      font-weight: 600;
      }
      .contact-department-grid {
      display: grid;
      gap: 35px;
      margin-bottom: 40px;
      }
      .contact-department-card {
      background: linear-gradient(45deg, #DFDBEC, #f8f9fa);
      padding: 25px;
      border-radius: 15px;
      border-left: 4px solid #9F9ABF;
      }
      .department-name {
      font-size: 1.2rem;
      font-weight: 600;
      color: #333;
      margin-bottom: 8px;
      }
      .department-contact {
      font-size: 1rem;
      color: #666;
      margin-bottom: 4px;
      }
      .department-specialty {
      font-size: 0.9rem;
      color: #9F9ABF;
      font-style: italic;
      }
      .contact-details-section {
      margin-top: 40px;
      padding-top: 30px;
      border-top: 2px solid #DFDBEC;
      }
      .contact-detail-item {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
      font-size: 1.1rem;
      }
      .contact-detail-icon {
      width: 20px;
      height: 20px;
      background: #9F9ABF;
      border-radius: 50%;
      margin-right: 15px;
      flex-shrink: 0;
      }
      .contact-form-panel {
      background: #ffffff;
      border-radius: 20px;
      padding: 50px;
      box-shadow: 0 10px 30px rgba(159, 154, 191, 0.15);
      background-image: url('./content/JhMZ.jpg');
      background-size: cover;
      background-position: center;
      position: relative;
      }
      .contact-form-panel::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(255, 255, 255, 0.97);
      border-radius: 20px;
      z-index: 1;
      }
      .contact-form-wrapper {
      position: relative;
      z-index: 2;
      }
      .form-title {
      font-size: 2rem;
      color: #333;
      margin-bottom: 30px;
      font-weight: 600;
      }
      .smart-contact-form {
      display: flex;
      flex-direction: column;
      gap: 25px;
      }
      .form-group {
      display: flex;
      flex-direction: column;
      }
      .form-label {
      font-size: 1rem;
      color: #555;
      margin-bottom: 8px;
      font-weight: 500;
      }
      .form-input, .form-select, .form-textarea {
      padding: 15px 18px;
      border: 2px solid #e0e0e0;
      border-radius: 10px;
      font-size: 1rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
      width: 100%;
      }
      .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none;
      border-color: #9F9ABF;
      box-shadow: 0 0 0 3px rgba(159, 154, 191, 0.1);
      }
      .form-textarea {
      min-height: 120px;
      resize: vertical;
      }
      .form-select {
      appearance: none;
      background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M7 10l5 5 5-5z"/></svg>');
      background-repeat: no-repeat;
      background-position: right 15px center;
      background-size: 20px;
      }
      .privacy-consent-wrapper {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-top: 10px;
      }
      .privacy-checkbox {
      margin-top: 3px;
      width: 18px;
      height: 18px;
      accent-color: #9F9ABF;
      }
      .privacy-text {
      font-size: 0.95rem;
      color: #666;
      line-height: 1.5;
      }
      .privacy-link {
      color: #9F9ABF;
      text-decoration: none;
      font-weight: 500;
      }
      .privacy-link:hover {
      text-decoration: underline;
      }
      .submit-button {
      background: linear-gradient(135deg, #9F9ABF, #C0BBD7);
      color: white;
      padding: 18px 40px;
      border: none;
      border-radius: 10px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 15px;
      width: 100%;
      }
      .submit-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(159, 154, 191, 0.3);
      }
      @media (max-width: 768px) {
      .contact-hero-title {
      font-size: 2.5rem;
      }
      .contact-main-container {
      grid-template-columns: 1fr;
      gap: 40px;
      }
      .contact-info-panel, .contact-form-panel {
      padding: 30px 20px;
      }
      .contact-section-title, .form-title {
      font-size: 1.8rem;
      }
      .contact-hero-section {
      padding: 60px 20px;
      }
      .contact-main-section {
      padding: 60px 15px;
      }
      .form-input, .form-select, .form-textarea {
      padding: 12px 15px;
      }
      .submit-button {
      padding: 15px 30px;
      }
      }