


    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    .kdm-contact-section {
        background-color: #ffffff;
        background-image: linear-gradient(
        45deg, 
        #f3f4f6 12.5%, 
        transparent 12.5%, 
        transparent 50%, 
        #f3f4f6 50%, 
        #f3f4f6 62.5%, 
        transparent 62.5%, 
        transparent
    );
      background-size: 12px 12px;
      padding: 80px 40px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      display: flex;
      justify-content: center;
      align-items: center;
      box-sizing: border-box;
      user-select: none;
    }

    .kdm-contact-container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
    }

    /* Heading Styles */
    .kdm-contact-heading {
      font-size: 36px;
      font-weight: 800;
      color: #111111;
      text-align: center;
      margin-bottom: 48px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      letter-spacing: -0.5px;
    }

    .kdm-heading-circle-arrow {
      background-color: #A3917F;
      color: #FFFFFF;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      transform: rotate(45deg);
    }

    /* Grid Layout Matrix */
    .kdm-contact-grid {
      display: grid;
      grid-template-columns: 5fr 7fr;
      gap: 32px;
      align-items: stretch;
    }

    /* Left Purple Box Card */
    .kdm-info-card {
      background-color: #9E77A0; /* Exact bright purple from image */
      border-radius: 16px;
      padding: 48px 40px;
      color: #FFFFFF;
      display: flex;
      flex-direction: column;
      box-shadow: 0 10px 30px rgba(138, 63, 252, 0.15);
    }

    .kdm-info-card h3 {
      font-size: 28px;
      font-weight: 700;
      margin: 0 0 16px 0;
    }

    .kdm-info-card p.subtitle {
      font-size: 14px;
      color: #F3E8FF;
      line-height: 1.6;
      margin: 0 0 32px 0;
      font-weight: 400;
    }

    .kdm-card-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      margin-bottom: 32px;
    }

    /* Contact Details Rows */
    .kdm-info-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 28px;
    }

    .kdm-icon-circle {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: orange; /* Exact orange icon background */
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .kdm-icon-circle img, .kdm-icon-circle svg {
      width: 20px;
      height: 20px;
      fill: #FFFFFF;
    }

    .kdm-text-block h4 {
      font-size: 16px;
      font-weight: 700;
      margin: 0 0 6px 0;
    }

    .kdm-text-block p {
      font-size: 13px;
      color: #F3E8FF;
      line-height: 1.5;
      margin: 0;
      font-weight: 400;
    }

    /* Right Form White Card */
    .kdm-form-card {
      background-color: #FFFFFF;
      border-radius: 16px;
      padding: 48px 40px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .kdm-form-card h3 {
      font-size: 24px;
      font-weight: 700;
      color: #1F2937;
      margin: 0 0 12px 0;
    }

    .kdm-form-card p.form-desc {
      font-size: 14px;
      color: #6B7280;
      line-height: 1.6;
      margin: 0 0 32px 0;
    }

    /* Form Inputs Inputs Handling */
    .kdm-input-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .kdm-form-group {
      margin-bottom: 16px;
    }

    .kdm-form-card input, 
    .kdm-form-card select, 
    .kdm-form-card textarea {
      width: 100%;
      box-sizing: border-box;
      border: 1px solid #E5E7EB;
      border-radius: 8px;
      padding: 14px 16px;
      font-size: 14px;
      color: #374151;
      font-family: inherit;
      background-color: #FFFFFF;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .kdm-form-card input:focus, 
    .kdm-form-card select:focus, 
    .kdm-form-card textarea:focus {
      border-color: #8A3FFC;
    }

    .kdm-form-card select {
      appearance: none;
      background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 16px center;
      background-size: 16px;
      color: #6B7280;
    }

    .kdm-form-card textarea {
      resize: none;
      height: 110px;
    }

    /* Get Started Action Button Component */
    .kdm-submit-wrapper {
      display: flex;
      justify-content: flex-end;
      margin-top: 12px;
    }

    .kdm-get-started-btn {
      background-color: #005F73; /* Exact dark orange color code */
      color: #FFFFFF;
      border: none;
      border-radius: 6px;
      padding: 14px 28px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 12px #005F73;
      transition: background-color 0.2s ease;
    }

    .kdm-get-started-btn:hover {
      background-color: white;
      color: #005F73;
    }

    .kdm-get-started-btn span {
      font-size: 14px;
    }

    /* Responsive Queries */
    @media (max-width: 991px) {
      .kdm-contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .kdm-contact-section {
        padding: 60px 20px;
      }
      .kdm-contact-heading {
        font-size: 28px;
      }
    }
    @media (max-width: 576px) {
      .kdm-input-row {
        grid-template-columns: 1fr;
        gap: 16px;
      }
    }
    
    @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

    .kdm-footer-wrapper {
      background-color: #262626; /* Exact dark slate/grey from mockup image */
      color: #FFFFFF;
      padding: 64px 80px 24px 80px;
      font-family: 'Plus Jakarta Sans', sans-serif;
      box-sizing: border-box;
      user-select: none;
    }

    .kdm-footer-container {
      max-width: 1240px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 3.2fr 2.3fr 2.1fr 4.4fr; /* Grid ratios tracking identical to picture layout */
      gap: 40px;
      padding-bottom: 48px;
    }

    /* Column 1: Brand & Identity styling */
    .kdm-footer-brand-col {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .kdm-footer-logo {
      height: 60px;
      display: flex;
      align-items: center;
    }
    .kdm-footer-logo img {
      height: 100%;
      object-fit: contain;
    }
    .kdm-footer-tagline {
      font-size: 14px;
      color: #E5E7EB;
      line-height: 1.6;
      margin: 0;
      max-width: 260px;
      font-weight: 400;
    }

    /* General Links List Layout Columns 2 & 3 */
    .kdm-footer-links-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .kdm-footer-links-col h3 {
      font-size: 20px;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0;
      letter-spacing: -0.3px;
    }
    .kdm-footer-links-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .kdm-footer-links-list a {
      font-size: 14px;
      color: #D1D5DB;
      text-decoration: none;
      font-weight: 400;
      transition: color 0.2s ease;
    }
    .kdm-footer-links-list a:hover {
      color: #E05314; /* Exact accent orange transition hover text */
    }

    /* Column 4: Detailed Address & Interactive Communications channels */
    .kdm-footer-contact-col {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .kdm-direct-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .kdm-contact-anchor {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #FFFFFF;
      text-decoration: none;
      font-size: 15px;
      font-weight: 600;
      transition: color 0.2s ease;
    }
    .kdm-contact-anchor:hover {
      color: #E05314;
    }
    .kdm-contact-anchor span.icon {
      color: #E05314;
      font-size: 16px;
    }

    .kdm-address-block h4 {
      font-size: 20px;
      font-weight: 700;
      color: #FFFFFF;
      margin: 0 0 10px 0;
    }
    .kdm-address-block p {
      font-size: 13.5px;
      color: #D1D5DB;
      line-height: 1.6;
      margin: 0;
      font-weight: 400;
    }

    /* Exact Rounded Outline Circle Social Bar Matrix */
    .kdm-social-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 6px;
    }
    .kdm-social-circle {
      width: 34px;
      height: 34px;
      border: 1px solid #9CA3AF;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #D1D5DB;
      font-size: 13px;
      transition: all 0.2s ease;
    }
    .kdm-social-circle:hover {
      border-color: #FFFFFF;
      color: #FFFFFF;
      background-color: rgba(255, 255, 255, 0.05);
    }

    /* Divider & Bottom copyright panel details */
    .kdm-footer-divider {
      border-top: 1px solid rgba(255, 255, 255, 0.15);
      width: 100%;
    }
    .kdm-footer-bottom-bar {
      max-width: 1240px;
      margin: 0 auto;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #9CA3AF;
      font-weight: 400;
    }
    .kdm-footer-bottom-bar strong {
      color: #FFFFFF;
      font-weight: 600;
    }
    .kdm-developer-credit a {
      color: #E05314;
      text-decoration: none;
      font-weight: 500;
    }
    .kdm-developer-credit a:hover {
      text-decoration: underline;
    }

    /* Responsive queries to stack vertically on smaller screens */
    @media (max-width: 1024px) {
      .kdm-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
    }
    @media (max-width: 640px) {
      .kdm-footer-wrapper { padding: 48px 24px 24px 24px; }
      .kdm-footer-container { grid-template-columns: 1fr; gap: 32px; }
      .kdm-footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
    }