.contact-section {
      max-width: 1000px;
      margin: auto;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      display: flex;
      overflow: hidden;
    }

    .contact-msg {
      flex: 1;
	  background: url('../../images/c1.png') no-repeat center center;
	  background-size: cover;    
	  background-position: 40% 50%;
	  background-repeat: no-repeat;
	  min-height: 300px;
	  width: 100%;                
	  max-width: 100%;	 
    }

    .contact-details {
      flex: 1;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .contact-details h2 {
      font-size: 2em;
      margin-bottom: 20px;
      color: #333;
      margin-left: 30px;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      margin: 10px 0;
      color: #555;
      font-size: 16px;
    }

    .contact-item i {
      color: #2575fc;
      margin-right: 12px;
      font-size: 18px;
      min-width: 20px;
    }

    .contact-label {
      font-weight: bold;
      color: #111;
    }

    .contact-buttons {
      margin-top: 25px;
    }

    .button {
      background-color: #2575fc;
      color: white;
      padding: 10px 20px;
      border: none;
      border-radius: 5px;
      margin-right: 10px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-size: 16px;
    }

    .button:hover {
      background-color: #1a5dd8;
    }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
      }

      .contact-image {
        height: 200px;
      }

      .contact-details {
        padding: 20px;
      }
    }